You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Laravel 8 use tailwind for paginator, Argon use bootstrap instead. The only thing that I had to do is add Paginator::useBootstrap(); to my AppServiceProvider
<?php
namespace App\Providers;
use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Paginator::useBootstrap();
}
}
Version
Laravel 8.x
Reproduction link
https://i.imgur.com/Na8iTPH.png
Operating System
CentOS 8
Device
PC
Browser & Version
Last Version
Steps to reproduce
When I paste the laravel url to reproduce the pagination it looks awful
{{ $users->links()}}
What is expected?
That looks like it should
What is actually happening?
The pagination get distortioned
Solution
I dont have one
Additional comments
Please help me with this :-(
This is how it looks: https://i.imgur.com/Na8iTPH.png
The text was updated successfully, but these errors were encountered: