答案 0 :(得分:0)
在 Person.php 中,添加与 Position.php
的背面关系to
现在你可以做点像......
public function positions()
{
return $this->belongsToMany('Path\To\Person')->withPivot(['id', 'person_id', 'position_id', 'created_at', 'updated_at']);
}
如果您遇到任何其他问题,请告诉我:))