Is there a way to customize the paginator view in Laravel 5.1.
I want to add a first and last link in addition to the out of the box previous and next links.
I want to change the previous and next links to display icons instead of text but display text for screen readers.
I want to limit the number of page links to display only 5.
Below is what I'm trying to achieve.
<ul class="pagination no-margin pull-right">
<li class="disabled">
<a href="/">First</a>
</li>
<li class="disabled">
<a href="#">
<span class="sr-only">Previous</span>
<i class="fa fa-caret-left" aria-hidden="true"></i>
</a>
</li>
<li class="active">
<a href="/">1</a>
</li>
<li class="">
<a href="/">2</a>
</li>
<li class="">
<a href="/">3</a>
</li>
<li class="">
<a href="/">4</a>
</li>
<li class="">
<a href="/">5</a>
</li>
<li>
<a href="#">
<span class="sr-only">Next</span>
<i class="fa fa-caret-right" aria-hidden="true"></i>
</a>
</li>
<li >
<a href="/">Last</a>
</li>
</ul>
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire