@extends('salesman.layouts.app') @section('panel_content')

{{translate('All Customers')}}

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