ahmad-mohammadi
ahmad-mohammadi

Reputation: 187

Laravel 8 - Pagination not showing numbers

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

Answers (1)

ahmad-mohammadi
ahmad-mohammadi

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

Related Questions