Merge pull request #920 from Pr3d4dor/fix-pagination-links

Fix pagination links
This commit is contained in:
Denis Duliçi 2019-11-18 20:22:17 +03:00 committed by GitHub
commit 75dadaab17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
<div class="col-6">
<nav class="float-right">
{!! $items->appends(request()->except('page'))->links() !!}
{!! $items->withPath(request()->url())->appends(request()->except('page'))->links() !!}
</nav>
</div>
@else

View File

@ -13,7 +13,7 @@
<div class="col-6">
<nav class="float-right">
{!! $items->appends(request()->except('page'))->links() !!}
{!! $items->withPath(request()->url())->appends(request()->except('page'))->links() !!}
</nav>
</div>
@else

View File

@ -4,7 +4,7 @@
<small>{{ trans('pagination.showing', ['first' => $items->firstItem(), 'last' => $items->lastItem(), 'total' => $items->total(), 'type' => strtolower(trans_choice('general.' . $type, 2))]) }}</small>
</div>
<div class="pull-right">
{!! $items->appends(request()->except('page'))->links() !!}
{!! $items->withPath(request()->url())->appends(request()->except('page'))->links() !!}
</div>
@else
<div class="pull-left">