1 回答

TA貢獻(xiàn)1893條經(jīng)驗(yàn) 獲得超10個(gè)贊
所屬的第一個(gè)參數(shù) ToMany() 應(yīng)引用它與透視模型具有這種關(guān)系的模型。
將模型中的方法更改為:composers()Instrument
public function composers()
{
return $this->belongsToMany(Composer::class);
}
然后,您的控制器代碼可以是:
public function getInstrument(Instrument $instrument)
{
return view('instrumentcomposer', compact('instrument'));
}
最后,你的邊欄選項(xiàng)卡文件將是:
@foreach($instrument->composers as $composer)
<div class="col-lg-3 col-md-4 col-6">
<img class="img-fluid img-thumbnail" src="https://i.picsum.photos/id/619/200/300.jpg?grayscale" alt="">
<h2>Wrote by {{ $composer->name }} </h2>
</div>
@endforeach
- 1 回答
- 0 關(guān)注
- 73 瀏覽
添加回答
舉報(bào)