Order #{{ $order->order_number }}
Date: {{ $order->created_at->format('Y-m-d') }}
| Product | SKU | Unit Price | Qty | Total |
|---|---|---|---|---|
| {{ $item->product_title }} | {{ $item->product_sku }} | Rs. {{ number_format($item->unit_price, 2) }} | {{ $item->quantity }} | Rs. {{ number_format($item->line_total, 2) }} |
| Subtotal | Rs. {{ number_format($order->subtotal, 2) }} |
| Discount | - Rs. {{ number_format($order->discount_total, 2) }} |
| Shipping | Rs. {{ number_format($order->shipping_fee, 2) }} |
| Grand Total | Rs. {{ number_format($order->grand_total, 2) }} |
| Payment Method | {{ strtoupper($order->payment_method) }} |
| Payment Status | {{ ucfirst($order->payment_status) }} |