我在项目中使用Laravel分页。目前,我可以执行http://example.com/users?page=1
,这将在显示特定用户时提供有限的访问权限。
我反而是想要具有from
和to
之类的查询参数,以便我可以执行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}"
我该如何使用?