belongsTo(Student::class, 'id_student'); } public function schedule() { return $this->belongsTo(Schedule::class, 'id_schedule'); } public function class() { return $this->belongsTo(Classes::class, 'id_class'); } }