📋 Order Status: Read-Only

This order is in the {{ str_replace('_', ' ', ucfirst($order->status)) }} phase. No actions are available at this stage.

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

Next Step: Move Trello card to "Ready to Ship" to trigger automatic shipment creation.

@elseif($order->status === 'awaiting_collection')

Status: Parcel is awaiting collection from courier.

@if($order->courier_waybill_id)

Waybill: {{ $order->courier_waybill_id }}

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

Status: Parcel is in transit to the customer.

@if($order->courier_tracking_number)

Tracking: {{ $order->courier_tracking_number }}

@endif
@else

The order is progressing through the fulfillment pipeline.

@endif