paginate
https://docs.laravel-dojo.com/laravel/5.5/pagination
[Notes] Simple forum v2
1.Pagination
a. HomeController
public function index()
{
$posts = \App\Models\Post::orderBy('created_at','DESC')->get();
return view('home')->with('posts',$posts);
}
b. home.blade.php
@foreach( $posts as $post)
c. try to see results of home
d. HomeController (paginate(2)) & see results of home
public function index()
{
$posts = \App\Models\Post::orderBy('created_at','DESC')->paginate(2);
return view('home')->with('posts',$posts);
}
e. home.blade.php
{{$posts->links("pagination::bootstrap-5")}}
沒有留言:
發佈留言