@extends('layouts.app') @section('title', 'Import Shipments') @section('breadcrumb') @endsection @section('content')

Import Shipments

Track and manage inbound shipments

New Shipment
Shipment No.Order RefContainer(s)Vessel / FlightPort of LoadingETDETAStatusActions @foreach($shipments ?? [] as $shipment) {{ $shipment->shipment_number }} {{ $shipment->order->order_number ?? '-' }} {{ $shipment->container_numbers ?? '-' }} {{ $shipment->vessel_name ?? '-' }} {{ $shipment->port_of_loading ?? '-' }} {{ $shipment->etd?->format('d M Y') ?? '-' }} {{ $shipment->eta?->format('d M Y') ?? '-' }}
@empty

No shipments found

@endforeach
@endsection