@extends('layouts.app', ['title' => __('Drivers Management')]) @section('content') @include('drivers.partials.header', ['title' => __('Edit Driver')])
@include('partials.flash')

{{ __('Driver Management') }}

@csrf @method('put')

{{ __('Driver information') }}

@foreach($earnings as $key => $value)
{{ __($key) }}
{{ __('Orders').": ".$value['orders'] }}

{{ __('Earnings').": "}}@money($value['earning'], config('settings.cashier_currency'),config('settings.do_convertion'))


@endforeach @if(isset($extraViews)) @foreach ($extraViews as $extraView ) @include($extraView['route']) @endforeach @endif
@include('layouts.footers.auth')
@endsection