diff --git a/site/app/Http/Controllers/ArtistController.php b/site/app/Http/Controllers/ArtistController.php index 5d55c2d..24786f5 100644 --- a/site/app/Http/Controllers/ArtistController.php +++ b/site/app/Http/Controllers/ArtistController.php @@ -22,7 +22,7 @@ public function index() ->withCount('artworks') ->orderBy('artworks_count', 'desc') ->paginate(100); - $podcasts = Podcast::where('published', true)->with('episodes')->get(); + $podcasts = Podcast::where('published', true)->get(); return view('profile.artists', [ 'user' => $user, 'pageTitle' => 'Artists',