belongsTo(User::class, 'user_id', 'id')->select(['id', 'name', 'username', 'mobile']); } public function course() { return $this->belongsTo(Course::class)->select(['id', 'title']); } public function video() { return $this->belongsTo(Course::class)->select(['id', 'title']); } }