BILL OF LADING

{{ $shipment->shipment_number }}

Shipper Information

Name: {{ $shipment->client->name }}

Address: {{ $shipment->client->address }}

Phone: {{ $shipment->client->phone }}

Shipment Details

Origin: {{ $shipment->origin_port }}

Destination: {{ $shipment->destination_port }}

Transport Mode: {{ ucfirst($shipment->transport_mode) }}

Status: {{ ucfirst($shipment->status) }}

Cargo Details

@foreach($shipment->items as $item) @endforeach
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') }}