Limit amount of links shown with Laravel pagination

前端 未结 11 2195
一个人的身影
一个人的身影 2020-12-14 02:10

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

11条回答
  •  旧巷少年郎
    2020-12-14 02:25

    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.

提交回复
热议问题