2019-02-16 20:08:28 +09:00
|
|
|
@if ($paginator->hasPages())
|
2019-02-16 20:50:22 +09:00
|
|
|
{{-- for PC : >= lg --}}
|
|
|
|
<ul class="pagination d-none d-lg-flex {{ $className ?? '' }}">
|
2019-02-16 20:08:28 +09:00
|
|
|
{{-- Previous Page Link --}}
|
|
|
|
@if ($paginator->onFirstPage())
|
|
|
|
<li class="page-item disabled"><span class="page-link">«</span></li>
|
|
|
|
@else
|
|
|
|
<li class="page-item"><a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">«</a></li>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
{{-- Pagination Elements --}}
|
|
|
|
@foreach ($elements as $element)
|
|
|
|
{{-- "Three Dots" Separator --}}
|
|
|
|
@if (is_string($element))
|
|
|
|
<li class="page-item disabled"><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"><span class="page-link">{{ $page }}</span></li>
|
|
|
|
@else
|
|
|
|
<li class="page-item"><a class="page-link" href="{{ $url }}">{{ $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">»</a></li>
|
|
|
|
@else
|
|
|
|
<li class="page-item disabled"><span class="page-link">»</span></li>
|
|
|
|
@endif
|
|
|
|
</ul>
|
2019-02-16 20:50:22 +09:00
|
|
|
{{-- for Phone : <= md --}}
|
|
|
|
<ul class="pagination d-flex d-lg-none {{ $className ?? '' }}">
|
|
|
|
@if ($paginator->onFirstPage())
|
|
|
|
<li class="page-item w-25 text-center disabled"><span class="page-link">«</span></li>
|
|
|
|
@else
|
|
|
|
<li class="page-item w-25 text-center"><a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">«</a></li>
|
|
|
|
@endif
|
|
|
|
|
2019-02-16 23:02:53 +09:00
|
|
|
<li class="page-item w-25 text-center">
|
|
|
|
<select class="custom-select tis-page-selector" aria-label="Page">
|
|
|
|
@for ($i = 1; $i <= $paginator->lastPage(); $i++)
|
|
|
|
<option value="{{ $i }}" {{ $i === $paginator->currentPage() ? 'selected' : '' }} data-href="{{ $paginator->url($i) }}">{{ $i }}</option>
|
|
|
|
@endfor
|
|
|
|
</select>
|
|
|
|
</li>
|
2019-02-16 20:50:22 +09:00
|
|
|
|
|
|
|
@if ($paginator->hasMorePages())
|
|
|
|
<li class="page-item w-25 text-center"><a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">»</a></li>
|
|
|
|
@else
|
|
|
|
<li class="page-item w-25 text-center disabled"><span class="page-link">»</span></li>
|
|
|
|
@endif
|
|
|
|
</ul>
|
2019-02-16 20:08:28 +09:00
|
|
|
@endif
|