我有这样一句话:
$users = User::where(something)->paginate(20);
在第1页,起始编号为1,结束编号为20
在第2页上,起始编号为21,结束编号为40
如果现在我在第2页,如何获得21号和40号?
答案 0 :(得分:3)
您可以使用->firstItem()
和->lastItem()
方法来限制分页,Check for more details
$users = User::where(something)->paginate(20);
$from = $users->firstItem();//will give you 20(index of 21st item) on page 2
$to = $users->lastItem();//will give you 39(index of 40th item) on page 2