comparison src/Generator/Model/snippets/belongs_to_many_relation.stub @ 23:827efbf4d73c main-dev

Huge changes to the relationships for models and more complex
author Luka Sitas <sitas.luka.97@gmail.com>
date Fri, 11 Apr 2025 20:50:20 -0400
parents
children
comparison
equal deleted inserted replaced
22:ee8ef14e158d 23:827efbf4d73c
1
2 public function {{relationName}}()
3 {
4 return $this->belongsToMany({{relatedModel}}::class, '{{pivotTable}}', '{{foreignPivotKey}}', '{{relatedPivotKey}}');
5 }
6