| Path : /var/www/html/usd_loan_system/resources/views/partials/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //var/www/html/usd_loan_system/resources/views/partials/pagination.blade.php |
@if($paginator->hasPages())
<div class="d-flex justify-content-between mt-5" style="display: flex; justify-content: space-between">
<div class="d-flex flex-row justify-content-between mt-4">
<label style="display: flex; align-items: center; gap: 10px;">
Show
<select id="pagination-limit" class="custom-select custom-select-sm form-control form-control-sm">
@foreach(allowedPagination() as $page)
<option {{ request()->input('limit') == $page ? 'selected' : '' }} value="{{ $page }}">{{ $page }}</option>
@endforeach
</select>
entries
</label>
</div>
<div>
<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">{{ translate('first') }}</span>
</li>
@else
<li class="page-item">
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev"
aria-label="@lang('pagination.previous')">{{ translate('previous') }}</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">{{ translate('next') }}</a>
</li>
@else
<li class="page-item disabled" aria-disabled="true">
<span class="page-link" aria-hidden="true">{{ translate('last') }}</span>
</li>
@endif
</ul>
</div>
</div>
@endif