Level 41
If you are using
->simplePaginate(15);
Replace it with
->paginate(15);
1 like
I am new to laravel and working on an established code. I am trying to change from simple pagination (<) (>) to using regular pagination: (<)12345...789(>).
Currently this is what my pagination.php uses:
php echo $media->render(); ?>
How can I change this to use a standard pagination instead of a simple one?
If you are using
->simplePaginate(15);
Replace it with
->paginate(15);
Please or to participate in this conversation.