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