@lang('order.cashiers')
@if (session('message'))
{{ session('message') }}
@endif @foreach ($cashiers as $cashier) @endforeach
@lang('order.ID') @lang('order.cashier_name') @lang('order.cashier_phone') @lang('order.branch') @lang('order.orders_count') @lang('order.orders_total') @lang('order.actions')
{{ $cashier->id }} {{ $cashier->first_name . " " .$cashier->last_name }} {{ $cashier->phone_number }} {{ $cashier->branch ? (app()->getLocale() === 'ar' ? $cashier->branch->name_ar : $cashier->branch->name_en) : __('order.none') }} {{$cashier->order_count}} {{( $cashier->total_order_price ? $cashier?->total_order_price : 0 ) . " " . $cashier->branch->country->currency_symbol}} @if (auth('admin')->user()->hasPermissionTo('detail report_cashier_performance', 'admin')) @lang('order.show') @endif