Consignment Management
All paid shipments awaiting dispatch
Note: Updating consignment status automatically updates all linked shipments.
@foreach($consignments as $consignment)
@endforeach
@if($consignment->barcode_image && Storage::disk('public')->exists($consignment->barcode_image))
@else
No Barcode
@endif
{{ $consignment->code }}
{{ $consignment->departure_location }} → {{ optional($consignment->destinationAddress)->name ?? $consignment->destination }}
@if(optional($consignment->destinationAddress)->address)
{{ $consignment->destinationAddress->address }}
@endif
{{ $consignment->created_at->format('d M Y') }}
{{ ucfirst(str_replace('_',' ',$consignment->status)) }}
@forelse($consignment->shipments as $shipment)
Print Barcode
{{ $shipment->tracking_number }}
View
@empty
No parcels yet
@endforelse
{{ $consignments->links() }}