【发布时间】:2021-08-21 07:36:36
【问题描述】:
我正在使用 Laravel 和 VueJs 做一个小项目,我尝试做一个无限滚动(分页 strong>),因此每次滚动时我都可以加载更多记录。
为此,我需要从分页中获取 last_page 编号。如何在我的资源中添加 last_page。
这是我的代码。(资源)
public function toArray($request)
{
return [
'username' => $this->username,
'age' => $this->age($this),
// i want to add last_page => here
];
}
这是我的控制器:
public function index(){
return DatingResource::collection(User::select('*')->where('id', '!=', Auth::user()->id)->paginate(10));
}
【问题讨论】: