mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 19:27:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @if ($paginator->hasPages())
 | |
|     <ul class="pagination" role="navigation">
 | |
|         {{-- 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 class="d-none d-md-block">‹</span>
 | |
|                     <span class="d-block d-md-none">@lang('pagination.previous')</span>
 | |
|                 </span>
 | |
|             </li>
 | |
|         @else
 | |
|             <li class="page-item">
 | |
|                 <button type="button" class="page-link" wire:click="previousPage" rel="prev" aria-label="@lang('pagination.previous')">
 | |
|                     <span class="d-none d-md-block">‹</span>
 | |
|                     <span class="d-block d-md-none">@lang('pagination.previous')</span>
 | |
|                 </button>
 | |
|             </li>
 | |
|         @endif
 | |
| 
 | |
|         {{-- Pagination Elements --}}
 | |
|         @foreach ($elements as $element)
 | |
|             {{-- "Three Dots" Separator --}}
 | |
|             @if (is_string($element))
 | |
|                 <li class="page-item disabled d-none d-md-block" 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 d-none d-md-block" aria-current="page"><span class="page-link">{{ $page }}</span></li>
 | |
|                     @else
 | |
|                         <li class="page-item d-none d-md-block"><button type="button" class="page-link" wire:click="gotoPage({{ $page }})">{{ $page }}</button></li>
 | |
|                     @endif
 | |
|                 @endforeach
 | |
|             @endif
 | |
|         @endforeach
 | |
| 
 | |
|         {{-- Next Page Link --}}
 | |
|         @if ($paginator->hasMorePages())
 | |
|             <li class="page-item">
 | |
|                 <button type="button" class="page-link" wire:click="nextPage" rel="next" aria-label="@lang('pagination.next')">
 | |
|                     <span class="d-block d-md-none">@lang('pagination.next')</span>
 | |
|                     <span class="d-none d-md-block">›</span>
 | |
|                 </button>
 | |
|             </li>
 | |
|         @else
 | |
|             <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
 | |
|                 <span class="page-link" aria-hidden="true">
 | |
|                     <span class="d-block d-md-none">@lang('pagination.next')</span>
 | |
|                     <span class="d-none d-md-block">›</span>
 | |
|                 </span>
 | |
|             </li>
 | |
|         @endif
 | |
|     </ul>
 | |
| @endif |