2022-05-15 17:10:42 +01:00
|
|
|
@if ($paginator->hasPages())
|
2023-11-27 22:10:50 +00:00
|
|
|
<nav class="pagination">
|
2022-05-15 17:10:42 +01:00
|
|
|
<div>
|
|
|
|
@if ($paginator->onFirstPage())
|
|
|
|
<span>
|
|
|
|
{!! __('pagination.previous') !!}
|
|
|
|
</span>
|
|
|
|
@else
|
|
|
|
<a href="{{ $paginator->previousPageUrl() }}">
|
|
|
|
{!! __('pagination.previous') !!}
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($paginator->hasMorePages())
|
|
|
|
<a href="{{ $paginator->nextPageUrl() }}">
|
|
|
|
{!! __('pagination.next') !!}
|
|
|
|
</a>
|
|
|
|
@else
|
|
|
|
<span>
|
|
|
|
{!! __('pagination.next') !!}
|
|
|
|
</span>
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
@endif
|