Most of the time when you add pagination on the Laravel blade. It breaks the style. So by following these steps, you can easily solve that page break.
And this will be the output after the fix -
So follow the steps -
1. Goto App > Providers > AppServiceProvider.php
2. add in boot() method -
public function boot()
{
Paginator::useBootstrap();
}
3. Add Namespace -
use Illuminate\Pagination\Paginator;
Hope In-sha-Allah this will fix your issue.
Top comments (0)