mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @if ($paginator->hasPages())
 | |
|     <nav>
 | |
|         <ul class="pagination">
 | |
|             {{-- Previous Page Link --}}
 | |
|             @if ($paginator->onFirstPage())
 | |
|                 <li class="disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
 | |
|                     <span aria-hidden="true">‹</span>
 | |
|                 </li>
 | |
|             @else
 | |
|                 <li>
 | |
|                     <a 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="disabled" aria-disabled="true"><span>{{ $element }}</span></li>
 | |
|                 @endif
 | |
| 
 | |
|                 {{-- Array Of Links --}}
 | |
|                 @if (is_array($element))
 | |
|                     @foreach ($element as $page => $url)
 | |
|                         @if ($page == $paginator->currentPage())
 | |
|                             <li class="active" aria-current="page"><span>{{ $page }}</span></li>
 | |
|                         @else
 | |
|                             <li><a href="{{ $url }}">{{ $page }}</a></li>
 | |
|                         @endif
 | |
|                     @endforeach
 | |
|                 @endif
 | |
|             @endforeach
 | |
| 
 | |
|             {{-- Next Page Link --}}
 | |
|             @if ($paginator->hasMorePages())
 | |
|                 <li>
 | |
|                     <a href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a>
 | |
|                 </li>
 | |
|             @else
 | |
|                 <li class="disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
 | |
|                     <span aria-hidden="true">›</span>
 | |
|                 </li>
 | |
|             @endif
 | |
|         </ul>
 | |
|     </nav>
 | |
| @endif
 |