如何在Laravel Paginator中显示特定数据?

时间:2018-09-12 10:57:58

标签: php laravel pagination

我在项目中使用Laravel分页。目前,我可以执行http://example.com/users?page=1,这将在显示特定用户时提供有限的访问权限。

我反而是想要具有fromto之类的查询参数,以便我可以执行http://example.com/users?from=1&to=18

在检查分页输出时,我发现了这个meta对象,它在&中指定了东西:

"meta":{"current_page":1,"from":1,"last_page":1,"path":"http://127.0.0.1:8000/api/users","per_page":10,"to":5,"total":5}"

我该如何使用?

0 个答案:

没有答案