Laravel 8 Bootstrap Pagination Fix

use Illuminate\Pagination\Paginator;

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