@extends('layouts.app') @section('title', 'Track Shipment') @section('page-title', 'Track Your Shipment') @section('content')
Enter your Container Number (CNTR) to see the current status
Customer / Receiver
{{ $booking->receiver_name ?? $booking->customer->name }}
{{ $booking->receiver_phone ?? $booking->customer->phone }}
Origin
{{ $booking->pickup_location }}
{{ $booking->pickup_date->format('d M, Y') }}
Destination
{{ $booking->delivery_location }}
{{ $booking->delivery_date ? $booking->delivery_date->format('d M, Y') : 'Estimated' }}
Cargo Details
{{ $booking->carton_count ?? 0 }} Cartons
{{ number_format($booking->weight_kg, 2) }} KG | {{ number_format($booking->volume_cbm, 2) }} CBM
Description
{{ $booking->cargo_description }}
Current Status
{{ $track->location }}
@if($track->remarks){{ $track->remarks }}
@endif{{ $booking->pickup_location }}
We couldn't find any shipment with the number {{ $cntr_no }}.
Please check the number and try again.