Last active
February 21, 2019 08:25
-
-
Save curder/426419396095a2ebe9891fce7e379a02 to your computer and use it in GitHub Desktop.
Laravel Default Pagination
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="pagination"> | |
<!-- Previous Page Link --> | |
@if ($paginator->onFirstPage()) | |
<li class="disabled"><span>«</span></li> | |
@else | |
<li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">«</a></li> | |
@endif | |
<!-- Pagination Elements --> | |
@foreach ($elements as $element) | |
<!-- "Three Dots" Separator --> | |
@if (is_string($element)) | |
<li class="disabled"><span>{{ $element }}</span></li> | |
@endif | |
<!-- Array Of Links --> | |
@if (is_array($element)) | |
@foreach ($element as $page => $url) | |
@if ($page == $paginator->currentPage()) | |
<li class="active"><span>{{ $page }}</span></li> | |
@else | |
<li><a href="{{ $url }}">{{ $page }}</a></li> | |
@endif | |
@endforeach | |
@endif | |
@endforeach | |
<!-- Next Page Link --> | |
@if ($paginator->hasMorePages()) | |
<li><a href="{{ $paginator->nextPageUrl() }}" rel="next">»</a></li> | |
@else | |
<li class="disabled"><span>»</span></li> | |
@endif | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if ($paginator->hasPages()) | |
<ul class="pagination" role="navigation"> | |
{{-- Previous Page Link --}} | |
@if ($paginator->onFirstPage()) | |
<li class="disabled" aria-disabled="true"><span>@lang('pagination.previous')</span></li> | |
@else | |
<li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a></li> | |
@endif | |
{{-- Next Page Link --}} | |
@if ($paginator->hasMorePages()) | |
<li><a href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a></li> | |
@else | |
<li class="disabled" aria-disabled="true"><span>@lang('pagination.next')</span></li> | |
@endif | |
</ul> | |
@endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment