@extends('layouts.admin') @section('title', 'Consignment Details') @section('content')
Tracking Code: {{ $consignment->code }}
Scan to track consignment
Departure
{{ $consignment->departure_location }}
Destination
{{ optional($consignment->destinationAddress)->name ?? $consignment->destination }}
Total Shipments
{{ $consignment->shipments->count() }}
Created At
{{ $consignment->created_at->format('d M Y, h:i A') }}
| Tracking | Customer | Weight | Status | Action |
|---|---|---|---|---|
| {{ $shipment->tracking_number ?? $shipment->id }} | {{ $shipment->customer_name ?? 'N/A' }} | {{ $shipment->weight ?? '0' }} kg | {{ ucfirst(str_replace('_',' ',$shipment->status)) }} | View |