@if ($charges->isEmpty()) @else @foreach ($charges as $key => $charge) @endforeach @endif
# Charges Name Remark Status Action
No Charges found
{{ $key + 1 + ($charges instanceof \Illuminate\Pagination\LengthAwarePaginator ? ($charges->currentPage() - 1) * $charges->perPage() : 0) }} {{ $charge->charges_name }} {{ $charge->remark }} @if (Auth::user()->hasPermission('charges.status')) @endif
@if (Auth::user()->hasPermission('charges.edit')) Edit @endif @if (Auth::user()->hasPermission('charges.delete')) @endif

Showing {{ $charges->firstItem() }} to {{ $charges->lastItem() }} of {{ $charges->total() }} entries

{{ $charges->appends(request()->except('page'))->links() }}
@include('backend.modal.delete_modal')