fix: fixing issues found at launch

This commit is contained in:
2023-12-17 21:43:00 +00:00
parent 3d3029ceb6
commit ebdc50a697
11 changed files with 26 additions and 19 deletions

View File

@@ -30,7 +30,7 @@ class ArtworkController extends Controller
->with('artist')
->orderBy('episode_id', 'desc')
->orderBy('created_at', 'desc')
->paginate($perPage = 92, $columns = ['*'], $pageName = 'artworks');
->paginate($perPage = 54, $columns = ['*'], $pageName = 'artworks');
$podcasts = Podcast::where('published', true)->with('episodes')->get();
return view('explore.artworks', [
'user' => $user,