You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					37 lines
				
				1.6 KiB
			
		
		
			
		
	
	
					37 lines
				
				1.6 KiB
			| 
								 
											2 years ago
										 
									 | 
							
								@if ($paginator->hasPages())
							 | 
						||
| 
								 | 
							
								    <div class="ui pagination menu" role="navigation">
							 | 
						||
| 
								 | 
							
								        {{-- Previous Page Link --}}
							 | 
						||
| 
								 | 
							
								        @if ($paginator->onFirstPage())
							 | 
						||
| 
								 | 
							
								            <a class="icon item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> <i class="left chevron icon"></i> </a>
							 | 
						||
| 
								 | 
							
								        @else
							 | 
						||
| 
								 | 
							
								            <a class="icon item" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')"> <i class="left chevron icon"></i> </a>
							 | 
						||
| 
								 | 
							
								        @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        {{-- Pagination Elements --}}
							 | 
						||
| 
								 | 
							
								        @foreach ($elements as $element)
							 | 
						||
| 
								 | 
							
								            {{-- "Three Dots" Separator --}}
							 | 
						||
| 
								 | 
							
								            @if (is_string($element))
							 | 
						||
| 
								 | 
							
								                <a class="icon item disabled" aria-disabled="true">{{ $element }}</a>
							 | 
						||
| 
								 | 
							
								            @endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            {{-- Array Of Links --}}
							 | 
						||
| 
								 | 
							
								            @if (is_array($element))
							 | 
						||
| 
								 | 
							
								                @foreach ($element as $page => $url)
							 | 
						||
| 
								 | 
							
								                    @if ($page == $paginator->currentPage())
							 | 
						||
| 
								 | 
							
								                        <a class="item active" href="{{ $url }}" aria-current="page">{{ $page }}</a>
							 | 
						||
| 
								 | 
							
								                    @else
							 | 
						||
| 
								 | 
							
								                        <a class="item" href="{{ $url }}">{{ $page }}</a>
							 | 
						||
| 
								 | 
							
								                    @endif
							 | 
						||
| 
								 | 
							
								                @endforeach
							 | 
						||
| 
								 | 
							
								            @endif
							 | 
						||
| 
								 | 
							
								        @endforeach
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        {{-- Next Page Link --}}
							 | 
						||
| 
								 | 
							
								        @if ($paginator->hasMorePages())
							 | 
						||
| 
								 | 
							
								            <a class="icon item" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')"> <i class="right chevron icon"></i> </a>
							 | 
						||
| 
								 | 
							
								        @else
							 | 
						||
| 
								 | 
							
								            <a class="icon item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> <i class="right chevron icon"></i> </a>
							 | 
						||
| 
								 | 
							
								        @endif
							 | 
						||
| 
								 | 
							
								    </div>
							 | 
						||
| 
								 | 
							
								@endif
							 |