Man's avatar
Level 2

Change simple Pagination

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?

0 likes
1 reply
RachidLaasri's avatar
Level 41

If you are using

->simplePaginate(15);

Replace it with

->paginate(15);
1 like

Please or to participate in this conversation.