73 lines
3.1 KiB
PHP
73 lines
3.1 KiB
PHP
@if ($paginator->hasPages())
|
|
@if(is_mobile())
|
|
<div class="mobile-paginator">
|
|
<a class="btn {{ !$paginator->previousPageUrl() ? 'disabled' : '' }}" href="{{ $paginator->previousPageUrl() ?? 'javascript:void(0)' }}"><i class="bi bi-chevron-left"></i> @lang('pagination.previous')</a>
|
|
<div class="input-group">
|
|
<input type="text" class="form-control" id="mb-page-input" onkeyup="this.value=this.value.replace(/\D/g,'')" value="{{ $paginator->currentPage() }}">
|
|
<span class="input-group-text">{{ $paginator->lastPage() }}</span>
|
|
</div>
|
|
<a class="btn {{ !$paginator->nextPageUrl() ? 'disabled' : '' }}" href="{{ $paginator->nextPageUrl() ?? 'javascript:void(0)' }}">@lang('pagination.next') <i class="bi bi-chevron-right"></i></a>
|
|
</div>
|
|
|
|
<script>
|
|
$('#mb-page-input').on('change', function() {
|
|
let page = $(this).val();
|
|
let lastPage = @json($paginator->lastPage());
|
|
let url = @json($paginator->url(0));
|
|
url = url.replace(/&/g, '&');
|
|
if (page > lastPage) {
|
|
$(this).val(lastPage);
|
|
page = lastPage;
|
|
}
|
|
|
|
if (page) {
|
|
url = bk.updateQueryStringParameter(url, 'page', page)
|
|
window.location.href = url;
|
|
}
|
|
})
|
|
</script>
|
|
@else
|
|
<nav class="d-flex justify-content-center">
|
|
<ul class="pagination">
|
|
{{-- Previous Page Link --}}
|
|
@if ($paginator->onFirstPage())
|
|
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
|
|
<span class="page-link" aria-hidden="true"><i class="bi bi-chevron-left"></i></span>
|
|
</li>
|
|
@else
|
|
<li class="page-item">
|
|
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')"><i class="bi bi-chevron-left"></i></a>
|
|
</li>
|
|
@endif
|
|
{{-- Pagination Elements --}}
|
|
@foreach ($elements as $element)
|
|
{{-- "Three Dots" Separator --}}
|
|
@if (is_string($element))
|
|
<li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li>
|
|
@endif
|
|
{{-- Array Of Links --}}
|
|
@if (is_array($element))
|
|
@foreach ($element as $page => $url)
|
|
@if ($page == $paginator->currentPage())
|
|
<li class="page-item active" aria-current="page"><span class="page-link">{{ $page }}</span></li>
|
|
@else
|
|
<li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li>
|
|
@endif
|
|
@endforeach
|
|
@endif
|
|
@endforeach
|
|
{{-- Next Page Link --}}
|
|
@if ($paginator->hasMorePages())
|
|
<li class="page-item">
|
|
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')"><i class="bi bi-chevron-right"></i></a>
|
|
</li>
|
|
@else
|
|
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
|
|
<span class="page-link" aria-hidden="true"><i class="bi bi-chevron-right"></i></span>
|
|
</li>
|
|
@endif
|
|
</ul>
|
|
</nav>
|
|
@endif
|
|
@endif
|