Pagination text issue solved.

This commit is contained in:
Cüneyt Şentürk 2019-12-25 15:04:08 +03:00
parent d38613227e
commit dfb32376e2
3 changed files with 6 additions and 6 deletions

View File

@ -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>

View File

@ -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

View File

@ -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>