@extends('store.layouts.app') @section('title', 'Order #' . $order->order_number) @section('meta_description', 'Order details – ' . ($store_name ?? config('app.name'))) @section('content')
Placed on {{ $order->created_at->format('M j, Y g:i A') }}
{{ $step['label'] }}
@if($current >= ($i+1))Completed
@elseif($current === ($i+1))In Progress
@elsePending
@endifOrder Cancelled
@if($order->cancelled_at)Cancelled on {{ $order->cancelled_at->format('M j, Y') }}
@endif{{ $item->product_name }}
@if($item->variant_name){{ $item->variant_name }}
@endifQuantity: {{ $item->quantity }} × {{ $currency_symbol }}{{ number_format($item->price, 0) }}
{{ $currency_symbol }}{{ number_format($item->subtotal, 0) }}
{{ $order->shipping_name }}
{{ $order->shipping_address }}
@if($order->shipping_city){{ $order->shipping_city }}{!! $order->shipping_state ? ', ' . $order->shipping_state : '' !!}
@endif{{ $order->shipping_email }}
{{ $order->shipping_phone }}