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.
我正在使用分页,但我没有找到像 15 30 60 120 这样的每页显示数据的选项。有没有办法让每页选择通过 laravel 分页提交,如果没有,请建议我任何替代方案。
您可以在 HTML 中为每个页面选择简单地创建一个传统组合框。
在控制器获取值并将值传递给分页器方法,如下所示:
$perPage = $request->get('perPage'); User::paginate($perPage);