我想使用skip
,take
但分页不起作用。为什么它不起作用?
代码:
$posts = DB::table('posts')
->orderBy('id','desc')
->skip(9)
->take(3)
->paginate(3);
if ($request->ajax()) {
return ['posts' => view('blog.ajax.index')->with(compact('posts'))->render(),
'next_page' => $posts->nextPageUrl()
];
}
我绝对需要使用分页