| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @if($paginator->count() > 0)
- @php
- $block = ceil($paginator->currentPage() / ($paginator->onEachSide ?? 10));
- $startPage = ((($block - 1) * $paginator->onEachSide) + 1);
- $lastPage = $paginator->lastPage();
- $prevBlockPage = (($block - 1) * $paginator->onEachSide);
- $nextBlockPage = (($block + 1) * $paginator->onEachSide - ($paginator->onEachSide - 1));
- @endphp
- <ul class="pagination justify-content-start justify-content-sm-center">
- {{-- Previous Page Link --}}
- @if ($paginator->onFirstPage() || $prevBlockPage <= 0)
- <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
- <span class="page-link" aria-hidden="true">‹</span>
- </li>
- @else
- <li class="page-item">
- <a class="page-link" href="{{ $paginator->url($prevBlockPage) }}" rel="prev" aria-label="@lang('pagination.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 > $prevBlockPage && $page < $nextBlockPage)
- @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
- @endif
- @endforeach
- @endif
- @endforeach
- {{-- Next Page Link --}}
- @if ($paginator->hasMorePages() && $paginator->lastPage() > $nextBlockPage)
- <li class="page-item">
- <a class="page-link" href="{{ $paginator->url($nextBlockPage) }}" rel="next" aria-label="@lang('pagination.next')">›</a>
- </li>
- @else
- <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
- <span class="page-link" aria-hidden="true">›</span>
- </li>
- @endif
- </ul>
- @endif
|