Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以在 Laravel 5.2 分页栏中获得更少的链接,从而不会破坏智能手机视图并且链接全部显示在一行上?我知道有一些方法可以构建自定义分页器,但我想知道是否可以使用默认分页器,只有更少的链接
您可以使用:
$result->simplePaginate(15);
而不是通常的:
$result-paginate(15);
这意味着只会显示previous和next按钮。如果这不适合您的需求,那么您有两种选择:
previous
next