belongsTo('App\Models\Student'); } public function course() { return $this->belongsTo('App\Models\Course'); } public function studentCourse() { return $this->belongsTo('App\Models\StudentCourse'); } public function getStudentName() { return empty($this['student']) ? '' : $this['student']->name; } public function getCourseName() { return empty($this['course']) ? '' : $this['course']->name; } }