Name: {{ $shipment->client->name }}
Address: {{ $shipment->client->address }}
Phone: {{ $shipment->client->phone }}
Origin: {{ $shipment->origin_port }}
Destination: {{ $shipment->destination_port }}
Transport Mode: {{ ucfirst($shipment->transport_mode) }}
Status: {{ ucfirst($shipment->status) }}
| Description | Quantity | Weight (kg) | Value |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} {{ $item->product->unit }} | {{ $item->weight }} | ${{ number_format($item->total_price, 2) }} |
Total Value: ${{ number_format($shipment->total_value, 2) }}
Generated on: {{ now()->format('Y-m-d H:i:s') }}