Order #: {{ $order->order_number }}
Date: {{ $order->created_at->format('d M Y') }}
Bill To:
{{ $order->user->name }}
{{ $order->user->email }}
{{ $order->shipping_address }}
| # | Product | Qty | Price | Tax | Total |
|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $item->product->name }} | {{ $item->qty }} | ₹{{ number_format($item->price,2) }} | ₹{{ number_format($item->tax,2) }} | ₹{{ number_format($item->total,2) }} |
| Subtotal: | ₹{{ number_format($order->subtotal,2) }} |
| Discount: | -₹{{ number_format($order->discount,2) }} |
| Tax: | ₹{{ number_format($order->tax,2) }} |
| Total: | ₹{{ number_format($order->total,2) }} |
Payment Status: {{ ucfirst($order->payment_status) }}
Order Status: {{ ucfirst($order->order_status) }}