(Fix) Playlist System 🐛

This commit is contained in:
HDVinnie
2019-11-20 19:39:06 -05:00
parent 8ec9b3ccb9
commit 583608bf3e
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ class PlaylistController extends Controller
*/
public function index()
{
$playlists = Playlist::with('user')->withCount('torrents')->where('is_private', '=', 0)->orderBy('name', 'ASC')->paginate(25);
$playlists = Playlist::with('user')->withCount('torrents')->where('is_private', '=', 0)->orderBy('name', 'ASC')->paginate(24);
return view('playlist.index', ['playlists' => $playlists]);
}