Laravel Tutorials

Laravel 5.7: New Pagination Link Customizations

Published
Laravel 5.7: New Pagination Link Customizations image

Laravel 5.7 has a new pagination method to customize the number of links on each side of the paginator. Thanks to the new method you no longer need a custom pagination view in some cases. Here’s the API you can use to define the link count on each side of the current page:

<?php
 
User::paginate(10)->onEachSide(5);

Thanks to Michał Putkowski for the contribution, you should check it out to see the implementation. Here’s another visual of what you can expect with this feature, presented by Rachid Laasri:

A cool new @laravelphp 5.7 feature:

You can customize the number of pages to show on each side of the current page without having to extend the pagination view. ???? pic.twitter.com/P7ywcbqhHQ

— Rachid Laasri (@RashidLaasri) August 21, 2018

This new feature will be excellent to cut out the need for a custom template in some cases, but it’s still useful to know how to customize the pagination view.

Editors Note: At the time of writing the method was linksOnEachSide but it was later changed to onEachSide

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Rulebook: Business Rules That Change by Date image

Laravel Rulebook: Business Rules That Change by Date

Read article
Taylor disabled GitHub Issues on most Laravel open-source packages. image

Taylor disabled GitHub Issues on most Laravel open-source packages.

Read article
Exclude Vendor and Default Commands in `php artisan dev` image

Exclude Vendor and Default Commands in `php artisan dev`

Read article
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article