@extends('admin.layouts.app') @section('panel')
  • @lang('Email'): {{ $driver->email }}
  • @lang('Mobile number'): {{ $driver->mobileNumber }}
  • @lang('Country'): {{ __($driver->country_name) }}
  • @lang('Current Zone'): {{ __(@$driver->zone->name) }}
  • @lang('Email Verification') @if ($driver->ev) @else @endif
  • @lang('Mobile Verification') @if ($driver->sv) @else @endif
  • @lang('Document Verification') @if ($driver->dv == Status::VERIFIED) @else @endif
  • @lang('Vehicle Document Verification') @if ($driver->vv == Status::VERIFIED) @else @endif
@lang('Financial Overview')

@lang('Balance')

{{ gs('cur_sym') }}{{ showAmount($driver->balance, currencyFormat: false) }} {{ __(gs('cur_text')) }}

@lang('Total Payment Received')

{{ gs('cur_sym') }}{{ showAmount($widget['total_payment'], currencyFormat: false) }} {{ __(gs('cur_text')) }}

@lang('Total Deposit')

{{ gs('cur_sym') }}{{ showAmount($widget['total_deposit'], currencyFormat: false) }} {{ __(gs('cur_text')) }}

@lang('Total Withdrawal')

{{ gs('cur_sym') }}{{ showAmount($widget['total_withdraw'], currencyFormat: false) }} {{ __(gs('cur_text')) }}
@csrf
@lang('Full Information')
+{{ $driver->dial_code }}
@lang('Driver Document')
@php echo $driver->documentVerificationBadge; @endphp
@if ($driver->driver_data)
    @foreach ($driver->driver_data as $val) @continue(!$val->value)
  • {{ __(keyToTitle($val->name)) }} @if ($val->type == 'checkbox') {{ implode(',', $val->value) }} @elseif($val->type == 'file') @lang('Attachment') @else

    {{ __($val->value) }}

    @endif
  • @endforeach
@else
@lang('No document found')
@endif @if ($driver->driver_data && $driver->dv == Status::PENDING)
@endif
@lang('Vehicle Information')
@php echo $driver->vehicleVerificationBadge; @endphp
@if (!blank(@$driver->vehicle_data))
  • @lang('Service') {{ __(@$driver->service->name) }}
  • @lang('Brand') {{ __(@$driver->brand->name) }}
  • @foreach ($driver->vehicle_data as $val) @continue(!$val->value)
  • {{ __(keyToTitle($val->name)) }} @if ($val->type == 'checkbox') {{ implode(',', $val->value) }} @elseif($val->type == 'file') @lang('Attachment') @else

    {{ __($val->value) }}

    @endif
  • @endforeach
@else
@lang('No vehicle information driver is added')
@endif @if (!blank(@$driver->vehicle_data) && $driver->vv == Status::PENDING)
@endif
@lang('Rules')
@if (!blank($driver->rules))
    @foreach ($driver->rules as $rule)
  • {{ __($rule) }}
  • @endforeach
@else
@lang('No rule driver is added')
@endif
@if ($driver->status == Status::USER_ACTIVE) @lang('If this driver is banned, they will no longer have access to their dashboard.') @else @lang('Ban reason was'): {{ __($driver->ban_reason) }} @endif
@csrf @if ($driver->status == Status::USER_ACTIVE)
@else

@lang('Are you sure to unban this driver?')

@endif
@if ($driver->status == Status::USER_ACTIVE) @else
@endif
@lang('Add funds to rider accounts by entering the desired amount below')
@csrf
{{ __(gs('cur_text')) }}
@endsection @push('breadcrumb-plugins')
@if ($driver->status == Status::USER_ACTIVE) @else @endif @lang('Notifications')
@endpush @push('script') @endpush @push('style') @endpush