Order #{{ $order->order_number }}
{{ $order->created_at->format('M j, Y g:i A') }}
| Item | Qty | Price | Subtotal |
|---|---|---|---|
| {{ $item->product_name }}@if($item->variant_name) ({{ $item->variant_name }})@endif | {{ $item->quantity }} | {{ $currency_symbol }}{{ number_format($item->price, 2) }} | {{ $currency_symbol }}{{ number_format($item->subtotal, 2) }} |
Subtotal: {{ $currency_symbol }}{{ number_format($order->subtotal, 2) }}
@if($order->discount > 0)Discount: -{{ $currency_symbol }}{{ number_format($order->discount, 2) }}
@endifTotal: {{ $currency_symbol }}{{ number_format($order->total, 2) }}