laravel pagination not working properly with sb admin 2

How to fix laravel 8 UI paginate problem?

just make sure you have this in your AppServiceProvider.

use Illuminate\Pagination\Paginator;

public function boot()
{
     Paginator::useBootstrap();
}
// Directly in your blade file
$posts->links('pagination::bootstrap-4')


Leave a Reply