スマホ向けページャーでページジャンプを可能にした

This commit is contained in:
shibafu
2019-02-16 23:02:53 +09:00
parent 72e9d4e3e8
commit 55eb95dda8
4 changed files with 21 additions and 1 deletions

View File

@@ -42,7 +42,13 @@
<li class="page-item w-25 text-center"><a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">&laquo;</a></li>
@endif
<li class="page-item w-25 text-center"><span class="page-link">{{ $paginator->currentPage() }}</span></li>
<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>
@if ($paginator->hasMorePages())
<li class="page-item w-25 text-center"><a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">&raquo;</a></li>