我正在尝试对从模型返回的数据进行分页。
但不断收到错误:
调用未定义的方法 App\Shortlist::links()
它在我的 Shortlist 模型上,我使用分页的代码是(控制器)......
public function shortlist()
{
$view_data = array
(
'shortlist' => Shortlist::where('user_id', $this->user_id)->with('property')->orderBy('created_at', 'desc')->paginate(4)
);
$view = 'frontend.'.themeOptions().'.account.shortlist';
// Change View Per Template...
if(view()->exists($view))
{
// Shared View in the Templates...
return view($view, $view_data);
}
else
{
// Load Shared View...
return view('frontend.shared.account.shortlist', $view_data);
}
}
然后在我看来,我正在使用:
{{ $shortlist->links() }}
但是不断收到该错误,有什么帮助吗?
狐的传说