| # | Product / Variant | HSN | Qty | UOM | Rate | @if($salesOrder->tax_type === 'INTRASTATE')CGST | SGST | @elseif($salesOrder->tax_type === 'INTERSTATE')IGST | @endifTotal |
|---|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
{{ $line->productVariant->product->product_name ?? '-' }} {{ $line->productVariant->sku ?? ($line->productVariant->variant_name ?? '') }} |
{{ $line->hsn_code ?? 'N/A' }} | {{ number_format($line->ordered_qty, 2) }} | {{ $line->uom->uom_code ?? '-' }} | ₹{{ number_format($line->rate, 2) }} | @if($salesOrder->tax_type === 'INTRASTATE')
{{ $line->cgst_rate }}% ₹{{ number_format($line->cgst_amount, 2) }} |
{{ $line->sgst_rate }}% ₹{{ number_format($line->sgst_amount, 2) }} |
@elseif($salesOrder->tax_type === 'INTERSTATE')
{{ $line->igst_rate }}% ₹{{ number_format($line->igst_amount, 2) }} |
@endif
₹{{ number_format($line->line_total, 2) }} |