@php $statuses = [ 'draft' => ['label' => 'Draft', 'icon' => 'bi-pencil-square'], 'confirmed' => ['label' => 'Confirmed', 'icon' => 'bi-check-circle'], 'processing' => ['label' => 'Processing', 'icon' => 'bi-gear'], 'booked' => ['label' => 'Booked', 'icon' => 'bi-ship'], 'shipped' => ['label' => 'Shipped', 'icon' => 'bi-truck'], 'in_transit' => ['label' => 'In Transit', 'icon' => 'bi-arrow-right-circle'], 'delivered' => ['label' => 'Delivered', 'icon' => 'bi-check-circle-fill'], ]; $currentStatus = $order->status ?? 'draft'; $statusKeys = array_keys($statuses); $currentIndex = array_search($currentStatus, $statusKeys); if ($currentIndex === false) $currentIndex = 0; @endphp