0
我想,當我得到的所有結果以訪問模型的關係,但我不斷收到以下錯誤:Laravel訪問關係
Undefined property: Illuminate\Database\Eloquent\Collection::$voornaam
代碼:
- Model : Selectie.php
public function User()
{
return $this->hasMany('User', 'id', 'user_id');
}
- Controller
$selectie = Selectie::where('wedstrijd_id', '=', $id)->get();
return View::make('base.match.show')->with('selectie', $selectie);
- View
@foreach($selectie as $sel)
{{ $sel->user->voornaam }}
@endforeach