Use Bootstrap Pagination with Laravel 8

Ibrar Hussain - Jan 12 '22 - - Dev Community

If you are using Laravel 8 for your application and want to use bootstrap pagination instead of the default one. Then we need to add the Paginator::useBootstrap(); in boot function in AppServiceProvider file.

You AppServiceProvider file should look like this:

<?php

namespace App\Providers;

use Illuminate\Pagination\Paginator;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        //
    }

    /**
     * Bootstrap any application services.
     *
     * @return void
     */
    public function boot()
    {
        Paginator::useBootstrap();
    }
}
Enter fullscreen mode Exit fullscreen mode

After this, your application pagination will use bootstrap pagination look and feel.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player