Parcel Details
{{ $shipment->tracking_number }}
Parcel ID: PCL-{{ $shipment->id }}
Consignment QR Code
@if($shipment->consignment && $shipment->consignment->barcode_image && Storage::disk('public')->exists($shipment->consignment->barcode_image))Path: {{ $shipment->consignment?->barcode_image ?? 'Not assigned' }}
{{ $shipment->tracking_number }}
Customer
{{ $shipment->user->name ?? 'N/A' }} @if(optional($shipment->user)->is_premium) Premium @endif
Weight
{{ $shipment->weight }} kg
Consignment
@if($shipment->consignment) {{ $shipment->consignment->code }} @else Not Assigned @endif
Price
₦{{ number_format($shipment->final_price, 2) }}
Receiver
{{ $shipment->receiver_name }}
Destination
{{ $shipment->receiver_address }}
Activity Log
Status: {{ ucfirst($shipment->status) }}
Status synced from consignment
{{ $shipment->updated_at->format('d M Y, h:i A') }}
Added to Consignment
Parcel added to consignment {{ optional($shipment->consignment)->code }}
{{ optional($shipment->consignment)->created_at?->format('d M Y, h:i A') }}
Payment Confirmed
Customer payment received (₦{{ number_format($shipment->final_price, 2) }})
{{ optional($shipment->invoice)->paid_at?->format('d M Y, h:i A') }}
Shipment Created
Parcel created
{{ $shipment->created_at->format('d M Y, h:i A') }}
No additional activity logs available.
@endif