@if(isset($driver_realisations) && count($driver_realisations) > 0)
@foreach($driver_realisations as $driver_realisation)
@endforeach
{{__('texte.references_arr.realisation.driver')}} |
{{__('texte.references_arr.realisation.objects')}} |
{{__('texte.references_arr.realisation.in_tons')}} |
{{__('texte.references_arr.realisation.total_amount')}} |
{{__('texte.references_arr.realisation.count_orders')}} |
{{__('texte.references_arr.realisation.deliveries')}} |
{{$driver_realisation->driver_name ?? __('texte.references_arr.realisation.undefined')}} |
{{$driver_realisation->count_objects}} |
{{number_format($driver_realisation->total_weight,3,'.','')}} |
{{number_format($driver_realisation->total_amount,2,'.','')}} |
{{$driver_realisation->count_orders}} |
{{$driver_realisation->total_visitations ?? 0}} |
{{__('texte.references_arr.realisation.total')}}: |
{{$driver_realisations->sum('count_objects')}} |
{{number_format($driver_realisations->sum('total_weight'),3,'.','')}} |
{{number_format($driver_realisations->sum('total_amount'),2,'.','')}} |
{{$driver_realisations->sum('count_orders')}} |
{{$driver_realisations->sum('total_visitations') ?? 0}} |
@endif