Fix pagination links

Closes #788
This commit is contained in:
Gianluca Bine 2019-11-18 13:57:27 -03:00
parent d7befebad1
commit 7dffc8f292
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">