jbowman99's avatar

Custom CSS for laravel paginator

Is there a good tutorial on doing custom CSS for the laravel pagination links?

currently using {!! $model->links() !!}

works fine, would like to change the look of it, but maintain the same functionality that's already baked in.

0 likes
1 reply
mdecooman's avatar

Hi @jbowman99

Just do a

php artisan vendor:publish

and you can find the templates in resources/views/vendor/pagination. They are based on Bootstrap but you can change as you please.

2 likes

Please or to participate in this conversation.