📋 Order Status: {{ str_replace('_', ' ', ucfirst($order->status)) }}

@if($order->status === 'ready_to_ship')

✓ Shipment created and ready to print labels/stickers

Next Steps:

  1. Print the shipment sticker label
  2. Print the shipment waybill/label
  3. Apply labels to parcel
  4. Move parcel to collection bay
  5. Click "Ready for Collection" button below
@elseif($order->status === 'awaiting_collection')

📦 Parcel awaiting collection from courier

@if($order->courier_waybill_id)

Waybill: {{ $order->courier_waybill_id }}

@endif @if($order->courier_shipment_id)

If labels are damaged, re-download them.

@endif
@elseif($order->status === 'in_transit')

✈️ Parcel in transit to customer

@if($order->courier_tracking_number)

Tracking Number: {{ $order->courier_tracking_number }}

@endif @if($order->courier_shipment_id)

If labels are damaged, re-download them.

@endif
@else

Order is processing through the fulfillment pipeline

@endif