Add these methods inside your real app/Models/User.php: public function watchlist() { return $this->hasMany(\App\Models\Watchlist::class); } public function watchHistories() { return $this->hasMany(\App\Models\WatchHistory::class); }