我将我的数组$帖子传递给我的视图,我尝试使用分页,但我有错误:
方法链接不存在.(查看:C:\ xampp\htdocs\app\resources\views\search.blade.php)
CONTROLLER
$posts = Post::where('visible', 1)
->where('expire_date', '>', $current)->where('delete', 0);
$posts->paginate(1);
$posts = $posts->get();
return view('search', compact('posts'));
Run Code Online (Sandbox Code Playgroud)
视图
<div class="pagination-bar text-center">
{{ $posts->links() }}
</div>
Run Code Online (Sandbox Code Playgroud)