When using Laravel Pagination, I believe that the css classes generated are relevant to bootstrap 2 and not bootstrap 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 framework code laravel/framework/src/illuminate/pagination/views/slider.php, is there a better / proper way of overriding the CSS / code generated by {{ $products->links() }}?