Home

Published

- 1 min read

laravel paginate fix

img of laravel paginate fix

The solution for this is noted below

laravel paginate fix

Solution

   //First go to the file app\Providers\AppServiceProvider.php and add:

use Illuminate\Pagination\Paginator;

public function boot()
{
    
    Paginator::useBootstrap();
}

//Use this after @endforeach in your post.blade.php:
{{ $blogs->links() }}

// OR
// Directly in your blade file
$posts->links('pagination::bootstrap-4')

Try other methods by searching on the site. That is if this doesn’t work