fix: changing num per page on submitted.

This commit is contained in:
Paul Couture 2023-12-17 16:01:35 -06:00
parent 3b45563ce5
commit a6dc77feff

View File

@ -31,7 +31,7 @@ public function index()
->with('artist')
->orderBy('episode_id', 'desc')
->orderBy('created_at', 'desc')
->paginate($perPage = 54, $columns = ['*'], $pageName = 'artworks');
->paginate($perPage = 52, $columns = ['*'], $pageName = 'artworks');
$podcasts = Cache::remember('publishedPodcasts', 30, function() {
return Podcast::where('published', true)->get();
});