Any easy way to limit how many links are shown with Laravels pagination?
Currently it shows 13 links at most (Prev, 1 2 3 4 5 7 8 .. 78 79 next)
This however
My table was too narrow so, I decided to show only first and the last li (The Next and Back arrows) of pagination with jQuery filter(). You can customize this further.
$('ul.pagination li').hide().filter(':lt(1), :nth-last-child(1)').show();
Make sure to add it before the end of body tag.