Pagination text issue solved.
This commit is contained in:
parent
d38613227e
commit
dfb32376e2
@ -24,13 +24,13 @@
|
|||||||
<div class="row justify-content-center mb-4">
|
<div class="row justify-content-center mb-4">
|
||||||
<div class="col-md-6 text-left">
|
<div class="col-md-6 text-left">
|
||||||
@if ($modules->current_page > 1)
|
@if ($modules->current_page > 1)
|
||||||
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page - 1 }}" class="btn btn-white btn-sm">{{ trans('pagination.previous') }}</a>
|
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page - 1 }}" class="btn btn-white btn-sm">{!! trans('pagination.previous') !!}</a>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-6 text-right">
|
<div class="col-md-6 text-right">
|
||||||
@if ($modules->current_page < $modules->last_page)
|
@if ($modules->current_page < $modules->last_page)
|
||||||
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-white btn-sm">{{ trans('pagination.next') }}</a>
|
<a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-white btn-sm">{!! trans('pagination.next') !!}</a>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -239,7 +239,7 @@
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-12" id="confirm" >
|
<div class="col-md-12" id="confirm">
|
||||||
<component v-bind:is="method_show_html" @interface="onRedirectConfirm"></component>
|
<component v-bind:is="method_show_html" @interface="onRedirectConfirm"></component>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -249,7 +249,7 @@
|
|||||||
|
|
||||||
@push('footer_start')
|
@push('footer_start')
|
||||||
<script src="{{ asset('public/js/portal/invoices.js?v=' . version('short')) }}"></script>
|
<script src="{{ asset('public/js/portal/invoices.js?v=' . version('short')) }}"></script>
|
||||||
<script>
|
<script type="text/javascript">
|
||||||
var payment_action_path = {!! json_encode($payment_actions) !!};
|
var payment_action_path = {!! json_encode($payment_actions) !!};
|
||||||
</script>
|
</script>
|
||||||
@endpush
|
@endpush
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<ul>
|
<ul>
|
||||||
@if ($modules->current_page < $modules->last_page)
|
@if ($modules->current_page < $modules->last_page)
|
||||||
<li class="next"><a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-default btn-sm">{{ trans('pagination.next') }}</a></li>
|
<li class="next"><a href="{{ url(request()->path()) }}?page={{ $modules->current_page + 1 }}" class="btn btn-default btn-sm">{!! trans('pagination.next') !!}</a></li>
|
||||||
@endif
|
@endif
|
||||||
@if ($modules->current_page > 1)
|
@if ($modules->current_page > 1)
|
||||||
<li class="previous"><a href="{{ url(request()->path()) }}?page={{ $modules->current_page - 1 }}" class="btn btn-default btn-sm">{{ trans('pagination.previous') }}</a></li>
|
<li class="previous"><a href="{{ url(request()->path()) }}?page={{ $modules->current_page - 1 }}" class="btn btn-default btn-sm">{{ trans('pagination.previous') }}</a></li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user