Khắc phục Laravel không hiển thị số trang pagenavi ( Laravel 8 – Pagination not showing numbers)

Khắc phục Laravel không hiển thị số trang pagenavi ( Laravel 8 – Pagination not showing numbers)

Laravel 8 – Pagination not showing numbers

 In AppServiceProvider add

use Illuminate\Pagination\Paginator;

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

Docs: https://laravel.com/docs/8.x/pagination#using-bootstrap

Cú pháp để truy vấn trên view không thay đổi :

{!! $value->links() !!}

Comments (0)
Add Comment