While using laravel pagination you are free to use your own custom views.So,when calling the links method on a paginator instance, pass the view name as the first argument to the method like :
{{ $paginator->links('view.name') }}
or
You can customize the pagination views is by exporting them to your resources/views/vendor
directory using the vendor:publish command:
php artisan vendor:publish --tag=laravel-pagination
This command will place the views in the resources/views/vendor/pagination
directory. The default.blade.php
file within this directory corresponds to the default pagination view. Edit this file to modify the HTML of pagination.