@extends('backend.layouts.app') @section('content')

{{translate('All Customers')}}

{{translate('Customers')}}
@foreach($customers as $key => $customer) @if ($customer->user != null) @endif @endforeach
{{translate('Name')}} {{translate('Email Address')}} {{translate('Phone')}} {{translate('Package')}} {{translate('Wallet Balance')}} {{translate('Options')}}
@if($customer->user->banned == 1) @endif {{$customer->user->name}} {{$customer->user->email}} {{$customer->user->phone}} @if ($customer->user->customer_package != null) {{$customer->user->customer_package->getTranslation('name')}} @endif {{single_price($customer->user->balance)}} @if($customer->user->banned != 1) @else @endif
{{ $customers->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection @section('script') @endsection