view src/Generator/Model/snippets/belongs_to_many_relation.stub @ 38:c062f013fd19 ls_dev_2025_09

Making test a default with the -a option
author Luka Sitas <sitas.luka.97@gmail.com>
date Thu, 25 Sep 2025 20:24:13 -0400
parents 827efbf4d73c
children
line wrap: on
line source


public function {{relationName}}()
{
    return $this->belongsToMany({{relatedModel}}::class, '{{pivotTable}}', '{{foreignPivotKey}}', '{{relatedPivotKey}}');
}