When using Laravel Pagination, I believe that the generated css classes are related to bootstrap 2, not boot 3.
{{ $products->links() }} generates
<div class="pagination"> <ul> <?php echo $presenter->render(); ?> </ul> </div>
However, I would like it to generate:
<ul class="pagination"> <?php echo $presenter->render(); ?> </ul>
Without changing the code of the laravel/framework/src/illuminate/pagination/views/slider.php there a better / correct way to override CSS / code generated using {{ $products->links() }} ?
twitter-bootstrap twitter-bootstrap-3 pagination laravel laravel-4
Gravy
source share