Use Bootstrap Pagination with Laravel 9
When working with Laravel 9 and Bootstrap 5 and you try to display pagination links they look broken, so how we can fix this problem?
Update AppServiceProvider
In the AppServiceProvider file, we tell our Laravel application to use bootstrap 5 pagination instead of the default one.
<?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::useBootstrapFive();
}
}