REPARTO N: {{ $route->n_route }}

Conductor: {{ $route->driver }}

Patente: {{ $route->patente }}

Sector: {{ $route->dispatchGuides[0]->warehouse->name }}

Fecha: {{ $route->date }}

@foreach ($route->dispatchGuides as $guide) @endforeach
Producto Cantidad
{{ $guide->product->name ?? 'Producto desconocido' }} {{ $guide->quantity }}
{{ implode(' - ', $guide->details->pluck('quantity')->toArray()) }}
Total de Productos: {{ $route->dispatchGuides->sum('quantity') }}