Prepping for launch. Reviewed-on: #1 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
		
			
				
	
	
		
			85 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @if ($paginator->hasPages())
 | |
|     <nav class="d-flex justify-items-center text-center justify-content-between">
 | |
|         <div class="d-flex justify-content-between flex-fill d-sm-none">
 | |
|             <ul class="pagination">
 | |
|                 {{-- Previous Page Link --}}
 | |
|                 @if ($paginator->onFirstPage())
 | |
|                     <li class="page-item disabled" aria-disabled="true">
 | |
|                         <span class="page-link">@lang('pagination.previous')</span>
 | |
|                     </li>
 | |
|                 @else
 | |
|                     <li class="page-item">
 | |
|                         <a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a>
 | |
|                     </li>
 | |
|                 @endif
 | |
|                 {{-- Next Page Link --}}
 | |
|                 @if ($paginator->hasMorePages())
 | |
|                     <li class="page-item">
 | |
|                         <a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a>
 | |
|                     </li>
 | |
|                 @else
 | |
|                     <li class="page-item disabled" aria-disabled="true">
 | |
|                         <span class="page-link">@lang('pagination.next')</span>
 | |
|                     </li>
 | |
|                 @endif
 | |
|             </ul>
 | |
|         </div>
 | |
|         <div class="d-none flex-sm-fill d-sm-flex align-items-sm-center justify-content-sm-between">
 | |
|             <div class="d-none d-lg-flex d-xl-flex d-xxl-flex">
 | |
|                 <p class="small text-muted">
 | |
|                     {!! __('Showing') !!}
 | |
|                     <span class="fw-semibold">{{ number_format($paginator->firstItem()) }}</span>
 | |
|                     {!! __('to') !!}
 | |
|                     <span class="fw-semibold">{{ number_format($paginator->lastItem()) }}</span>
 | |
|                     {!! __('of') !!}
 | |
|                     <span class="fw-semibold">{{ number_format($paginator->total()) }}</span>
 | |
|                     {!! __('results') !!}
 | |
|                 </p>
 | |
|             </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">‹</span>
 | |
|                         </li>
 | |
|                     @else
 | |
|                         <li class="page-item">
 | |
|                             <a class="page-link" href="{{ $paginator->previousPageUrl() }}" 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 == $paginator->currentPage())
 | |
|                                     <li class="page-item active" aria-current="page"><span class="page-link">{{ number_format($page) }}</span></li>
 | |
|                                 @else
 | |
|                                     <li class="page-item"><a class="page-link" href="{{ $url }}">{{ number_format($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')">›</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>
 | |
|             </div>
 | |
|         </div>
 | |
|     </nav>
 | |
| @endif
 |