Official Tax Invoice
|
Billed To: {{ $order->user->name }} {{ nl2br($order->address->getFullAddressAttribute()) }} |
Order Details: No: #{{ $order->order_number }} Date: {{ $order->created_at->format('d M Y') }} |
| Product | Qty | Price | Total |
|---|---|---|---|
| {{ $item->product->name }} | {{ $item->quantity }} | ₹{{ number_format($item->price, 2) }} | ₹{{ number_format($item->price * $item->quantity, 2) }} |
Subtotal: ₹{{ number_format($order->subtotal, 2) }}
Shipping: {{ $order->shipping_charges == 0 ? 'Complimentary' : '₹'.number_format($order->shipping_charges, 2) }}
Discount: ₹{{ number_format($order->discount_amount, 2) }}