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="col-md-6 text-left">
|
||||
@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
|
||||
</div>
|
||||
|
||||
<div class="col-md-6 text-right">
|
||||
@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
|
||||
</div>
|
||||
</div>
|
||||
|
@ -239,7 +239,7 @@
|
||||
</a>
|
||||
</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>
|
||||
</div>
|
||||
</div>
|
||||
@ -249,7 +249,7 @@
|
||||
|
||||
@push('footer_start')
|
||||
<script src="{{ asset('public/js/portal/invoices.js?v=' . version('short')) }}"></script>
|
||||
<script>
|
||||
var payment_action_path = {!! json_encode($payment_actions) !!};
|
||||
<script type="text/javascript">
|
||||
var payment_action_path = {!! json_encode($payment_actions) !!};
|
||||
</script>
|
||||
@endpush
|
||||
|
@ -70,7 +70,7 @@
|
||||
<div class="col-md-12">
|
||||
<ul>
|
||||
@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
|
||||
@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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user