Reputation: 277
{{ $articles->links() }}
I'm using this code to display page numbers. But it shows us like this:
All types are coming to the page. previous-next links, page number links, previous-next icons. How to minimize this? I want just see page number links. how to do that. if you help me i will be glad.
Upvotes: 0
Views: 64
Reputation: 277
It worked like this: $articles->links('pagination::bootstrap-4')
Upvotes: 0
Reputation: 84
Add
paginator::useBootstrap();
to your AppServiceProvider boot method
Upvotes: 2