@extends('layouts.app') @section('title', 'Dispatch #'.optional($dispatch)->dispatch_number) @section('breadcrumbs') @endsection @section('content')
Dispatched on {{ $dispatch->created_at->format('d M Y, h:i A') }} | Order: {{ $dispatch->order->order_number ?? 'N/A' }}
| Dispatch # | {{ $dispatch->dispatch_number }} |
| Date | {{ $dispatch->date?->format('d M Y') ?? $dispatch->created_at->format('d M Y') }} |
| Export Order | {{ $dispatch->order->order_number ?? 'N/A' }} |
| Recipient | {{ $dispatch->recipient ?? 'N/A' }} |
| No. of Documents | {{ $dispatch->no_of_documents ?? 0 }} |
| Method | {{ ucfirst(str_replace('_', ' ', $dispatch->dispatch_method ?? 'courier')) }} |
| Courier Company | {{ $dispatch->courier_company ?? 'N/A' }} |
| Tracking # | {{ $dispatch->tracking_number ?? 'N/A' }} |
| Expected Delivery | {{ optional($dispatch->expected_delivery_date)->format('d M Y') ?? 'N/A' }} |
| Actual Delivery | {{ optional($dispatch->actual_delivery_date)->format('d M Y') ?? 'Pending' }} |
{{ $step['event'] }}
{{ $step['date'] ?? 'Pending' }}| Order | {{ $dispatch->order->order_number ?? 'N/A' }} |
| Customer | {{ $dispatch->order->customer->name ?? 'N/A' }} |
| Created | {{ $dispatch->created_at->format('d M Y') }} |