Laravel - How to access nested child data in blade view?
问题 Trying to access nested child data of a model in a blade view. My understanding is I need to eager load - but not winning... Student has bursaries, which can have enrolments, which can have courses Student Model: public function bursaries() { return $this->hasMany('App\StudentBursary'); } Student Bursary Model: public function enrolments() { return $this->hasMany('App\StudentBursaryEnrolment'); } Student Bursary Enrolment Model: public function courses() { return $this->hasMany('App