Merge pull request #920 from Pr3d4dor/fix-pagination-links
Fix pagination links
This commit is contained in:
commit
75dadaab17
@ -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
|
||||
|
@ -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
|
||||
|
@ -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">
|
||||
|
Loading…
x
Reference in New Issue
Block a user