| # | Item Description | HSN | Qty | Rate | Taxable Amt | @if($hasTax1){{ $tax1Name }} | @endif @if($hasTax2){{ $tax2Name }} | @endifTotal |
|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->product->name ?? $item->description ?? '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) > 0) Discount: {{ $item->discount_percent }}%@endif |
{{ $item->product->hsn_code ?? '-' }} | {{ number_format($item->qty, 2) }} | ₹{{ number_format($item->rate, 2) }} | ₹{{ number_format($taxableValue, 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) }} |
| TOTAL | {{ number_format($bill->items->sum('qty'), 2) }} | ₹{{ number_format($totalTaxableValue, 2) }} | @if($hasTax1)₹{{ number_format($tax1Total, 2) }} | @endif @if($hasTax2)₹{{ number_format($tax2Total, 2) }} | @endif₹{{ number_format($totalAmount, 2) }} |
| Subtotal | ₹{{ number_format($totalTaxableValue, 2) }} |
| {{ $tax1Name }} | ₹{{ number_format($tax1Total, 2) }} |
| {{ $tax2Name }} | ₹{{ number_format($tax2Total, 2) }} |
| Shipping Charges | ₹{{ number_format($bill->shipping_charge, 2) }} |
| Round Off (+/-) | ₹{{ number_format($bill->adjustment, 2) }} |
| Grand Total | ₹{{ number_format($bill->grand_total, 2) }} |
| Paid Amount | ₹{{ number_format($bill->paid_amount, 2) }} |
| Balance Due | ₹{{ number_format($bill->balance_due, 2) }} |
| Balance Due | ₹0.00 |