@yield('title')

{{-- HEADER --}}

Départ interne – {{ $repartition->designation }}

Date : {{ \Carbon\Carbon::parse($repartition->date)->format('d/m/Y') }}
Réf : {{ $repartition->reference }}
Imprimer
{{-- BODY --}}
@forelse ($items as $key => $item) @empty @endforelse {{-- TOTAL --}} @if($items->count() > 0) @endif
# Camion Chauffeur Poids/T Destination Client Carb/L Frais Frais Manutention Obs
{{ $key + 1 }} {{ $item->camion->plaque_immatriculation_tracteur ?? '-' }} / {{ $item->camion->plaque_immatriculation_equipement ?? '-' }} {{ $item->chauffeur }} {{ $item->quantity }} {{ $item->destination }} {{ $item->client }} {{ number_format($item->carburant, 0, '.', ' ') }} L {{ number_format($item->frais, 0, '.', ' ') }} FCFA {{ number_format($item->frais_manutention, 0, '.', ' ') }} FCFA {{ $item->observations ?: '-' }}
Aucun camion enregistré
TOTAL {{ number_format($sum_quantity, 0, '.', ' ') }} {{ number_format($sum_carburant, 0, '.', ' ') }} L {{ number_format($sum_frais, 0, '.', ' ') }} FCFA {{ number_format($sum_frais_manutention, 0, '.', ' ') }} FCFA
{{-- FOOTER --}}