• @if($class == 'current') Order Confirmed! @elseif ($class == 'active') Order Confirmed! @else Order Confirmed! @endif
    Order Confirmed!
    @if (in_array($order->status, $all_order_status))

    01 Jan 1970

    Thanks for your order! You can see updates here along the way.

    @endif
  • @if($class == 'current') Preparing To Dispatch! @elseif ($class == 'active') Preparing To Dispatch! @else Preparing To Dispatch! @endif
    Preparing To Dispatch!
    @if (in_array($order->status, $all_order_status))

    01 Jan 1970

    We are getting your order ready! We will dispatch it soon.

    @endif
  • @if($class == 'current') Order On The Way @elseif ($class == 'active') Order On The Way @else Order On The Way @endif
    Order On The Way
    @if (in_array($order->status, $all_order_status))

    01 Jan 1970

    Your order is nearing you. You’ll get an alert when it’s at your door.

    @endif
  • @if($class == 'active') Delivered @elseif ($class == 'current') Delivered @else Delivered @endif
    Delivered
    @if ($order->status == 'DELIVERED')

    01 Jan 1970

    Your Order has successfully reached your destination.

    @endif