@include('admin.header') @section('title', 'Shipment Details') Back to Shipments Edit Add Carton Booking Invoice
Shipment Details
Shipment Number {{ $shipment->shipment_number }}
Order Confirmation {{ $shipment->orderConfirmation->order_number }}
Shipment Date {{ $shipment->shipment_date->format('M d, Y') }}
Vessel/Flight No {{ $shipment->vessel_flight_no ?? 'N/A' }}
Bill of Lading {{ $shipment->bill_of_lading ?? 'N/A' }}
Port of Loading {{ $shipment->port_of_loading ?? 'N/A' }}
Port of Discharge {{ $shipment->port_of_discharge ?? 'N/A' }}
ETD {{ $shipment->etd ? $shipment->etd->format('M d, Y') : 'N/A' }}
ETA {{ $shipment->eta ? $shipment->eta->format('M d, Y') : 'N/A' }}
Status {{ ucfirst($shipment->status) }}
@if($shipment->remarks)
{{ $shipment->remarks }}
@endif
Carton Details
Add Carton
@if($shipment->cartonDetails->count() > 0)
@foreach($shipment->cartonDetails as $carton) @endforeach
Carton No Quantity Gross Weight Net Weight Volume Description Actions
{{ $carton->carton_number }} {{ number_format($carton->quantity) }} {{ $carton->gross_weight ? number_format($carton->gross_weight, 2) . ' kg' : 'N/A' }} {{ $carton->net_weight ? number_format($carton->net_weight, 2) . ' kg' : 'N/A' }} {{ $carton->volume ? number_format($carton->volume, 3) . ' m³' : 'N/A' }} {{ Str::limit($carton->description, 30) }}
@csrf @method('DELETE')
Total {{ number_format($shipment->total_quantity) }} {{ number_format($shipment->total_weight, 2) }} kg
@else

No carton details added yet.

Add First Carton
@endif
Order Information
{{ $shipment->orderConfirmation->order_number }}
  • Quantity: {{ number_format($shipment->orderConfirmation->confirmed_quantity) }}
  • Price:${{ number_format($shipment->orderConfirmation->confirmed_price, 2) }}
  • Delivery: {{ $shipment->orderConfirmation->formatted_delivery_date }}
  • Status: {{ ucfirst($shipment->orderConfirmation->status) }}
Shipment Summary
Total Cartons: {{ $shipment->total_cartons }}
Total Quantity: {{ number_format($shipment->total_quantity) }}
Total Weight: {{ number_format($shipment->total_weight, 2) }} kg
Created By: {{ $shipment->creator->name }}
Created At: {{ $shipment->created_at->format('M d, Y H:i') }}
@include('admin.footer')