@extends('layouts.frontend') @section('title', 'Track Shipment') @section('content')

Track Your Shipment

Enter your container number below to see the current status of your cargo delivery.

@if(isset($cntr_no) && $cntr_no) @if($booking)

Shipment Number

{{ $booking->cntr_no }}

Status: {{ $booking->status }}

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 Delivery' }}

Cargo Details

Quantity

{{ $booking->carton_count }} Cartons

Weight

{{ $booking->weight_kg }} kg

Items Description

{{ $booking->cargo_description }}

Tracking History

    @forelse($booking->tracking->sortByDesc('status_date') as $track)
  • @if(!$loop->last) @endif

    {{ $track->status }} at {{ $track->location }}

    @if($track->remarks)

    {{ $track->remarks }}

    @endif
  • @empty
  • Booking Created

  • @endforelse
@else

Shipment Not Found

We couldn't find any shipment with the number {{ $cntr_no }}.

Please check the number and try again.

@endif @endif
@endsection