|
MURUPP GADA DESIGN STUDIO LLP
PAN: ACAFM6335J |
INVOICE: #{{ data_get($order, 'invoice_id', '-') }} |
|
Billing Address :
@foreach(explode(',', data_get($order, 'billing_address', '-')) as $part)
{{ trim($part) }} |
Shipping Address :
@foreach(explode(',', data_get($order, 'shipping_address', '-')) as $part)
{{ trim($part) }} |
Customer Details :
Customer Name: {{ data_get($order, 'customer_name', '-') }} |
| # | Product Name | Qty | Size | Rate | Amount | |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item }} | {{ $quantities[$index] ?? '-' }} | {{ $sizes[$index] ?? '-' }} | {{ !empty($prints[$index]) ? $prints[$index] : '-' }} | ₹ {{ number_format($prices[$index] ?? 0, 2) }} | ₹ {{ number_format(($prices[$index] ?? 0) * ($quantities[$index] ?? 1)) }} |
| Sub Total | ₹ {{ number_format(data_get($order, 'total_price', 0)) }} | |||||
| Total (inclusive of taxes) | ₹ {{ number_format(data_get($order, 'total_price', 0)) }} | |||||