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')
Discover more from Soa Technology | Aditya Website Development Designing Company
Subscribe to get the latest posts sent to your email.