分頁
設定分頁
$posts = Post::all();$posts = Post::paginate(3);$posts = Post::where('words', '>', 100)->paginate(3);$posts = Post::simplePaginate(3);顯示分頁
{{ $posts->links() }}預設分頁型式
自訂分頁頁面
Last updated
$posts = Post::all();$posts = Post::paginate(3);$posts = Post::where('words', '>', 100)->paginate(3);$posts = Post::simplePaginate(3);{{ $posts->links() }}Last updated
pagination::sliderpagination::simple{{ $posts->links('site.pagination') }}