首页 > 解决方案 > Limiting laravel pagination center to 3

问题描述

I'm having trouble in my pagination because i have to many data in my database. I want to limit or reduce the display in pagination center for it didn't fit in mobile sizes. The image below display 5 pagination in center. i want to make it 3. I am using laravel 6 ang latest bootstrap.

enter image description here

here is my code

enter image description here

enter image description here

标签: laraveltwitter-bootstrappagination

解决方案


文档中

您可以控制在分页器的 URL“窗口”的每一侧显示多少附加链接。默认情况下,三个链接显示在主分页器链接的每一侧。但是,您可以使用以下onEachSide方法控制此数字:

{{ $users->onEachSide(5)->links() }}

因此,在您的情况下,您需要onEachSide(1)获得三个链接。


推荐阅读