| # | Description | Unit | Qty | Rate | Taxable Amt | @if($hasTax1){{ $tax1Name }} | @endif @if($hasTax2){{ $tax2Name }} | @endifTotal |
|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->product->name ?? 'N/A' }}
@if($item->variation) {{ $item->variation->variation_name ?: $item->variation->sku }}@endif @if($item->product && $item->product->sku) SKU: {{ $item->product->sku }}@endif @if($item->discount_percent > 0) Discount: {{ $item->discount_percent }}%@endif |
{{ $item->unit->short_name ?? '-' }} | {{ number_format($item->qty, 3) }} | {{ number_format($item->rate, 2) }} | {{ number_format($taxableAmt, 2) }} | @if($hasTax1){{ $item->tax_1_amount ? number_format($item->tax_1_amount, 2) : '-' }} | @endif @if($hasTax2){{ $item->tax_2_amount ? number_format($item->tax_2_amount, 2) : '-' }} | @endif{{ number_format($item->total, 2) }} |
| Subtotal | ₹{{ number_format($po->subtotal, 2) }} |
| {{ $tax1Name }} | ₹{{ number_format($tax1Total, 2) }} |
| {{ $tax2Name }} | ₹{{ number_format($tax2Total, 2) }} |
| Shipping | ₹{{ number_format($po->shipping_charge, 2) }} |
| Discount | -₹{{ number_format($po->discount_amount, 2) }} |
| Grand Total | ₹{{ number_format($po->total_amount, 2) }} |