|
Bill To
Name: {{ $order->user->name }}
Email: {{ $order->user->email }}
Phone: {{ $order->user->mobile ?? '-' }}
|
Delivery Address
{{ $order->shippingAddress->address_line1 ?? '' }}
{{ $order->shippingAddress->panchayat ?? '' }}
{{ $order->shippingAddress->taluk ?? '' }},
{{ $order->shippingAddress->district ?? '' }} - {{ $order->shippingAddress->pincode ?? '' }}
|
| # | Product | Pack Size | Qty | Price | Discount | Tax | Total |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->product_name }} | {{ $item->pack_size_name }} | {{ $item->quantity }} | ₹{{ number_format($item->price, 2) }} | ₹{{ number_format($item->discount_amount, 2) }} | ₹{{ number_format($item->tax_amount, 2) }} | ₹{{ number_format($item->total_price, 2) }} |
| Subtotal: | ₹{{ number_format($order->subtotal, 2) }} |
| Discount: | - ₹{{ number_format($order->discount_amount, 2) }} |
| Tax: | + ₹{{ number_format($order->gst_amount, 2) }} |
| Grand Total: | ₹{{ number_format($order->total_amount, 2) }} |