Hakan Gundogan
Hakan Gundogan

Reputation: 277

laravel pagination problem - all links types are coming

 {{ $articles->links()  }}

I'm using this code to display page numbers. But it shows us like this: enter image description here

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

Answers (2)

Hakan Gundogan
Hakan Gundogan

Reputation: 277

It worked like this: $articles->links('pagination::bootstrap-4')

Upvotes: 0

Majdiden
Majdiden

Reputation: 84

Add

paginator::useBootstrap();

to your AppServiceProvider boot method

Upvotes: 2

Related Questions