Reputation: 187
I am trying to do a pagination and it works. But in the pagination I am only getting
« Previous Next »
How to do pagination with laravel so that i can see number pagination
< 1 2 3 >
Upvotes: 0
Views: 270
Reputation: 187
you can check that in the In providers/AppServiceProvider
this line is added
use Illuminate\Pagination\Paginator;
public function boot()
{
Paginator::useBootstrap();
}
Upvotes: 1