{{ $invoice->invoice_number }}
Date: {{ $invoice->invoice_date->format('d M Y') }}
@if($invoice->due_date)Due: {{ $invoice->due_date->format('d M Y') }}
@endif @if($invoice->po_number)PO: {{ $invoice->po_number }}
@endif{{ ucfirst($invoice->payment_status) }}
| # | Description | HSN/SAC | Qty | Unit | Rate (₹) | Disc | Taxable (₹) | @if($invoice->isInterState())IGST | @elseCGST | SGST | @endifTotal (₹) |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->serial_number }} |
{{ $item->item_name }}
@if($item->description) {{ $item->description }}@endif |
{{ $item->hsn_sac_code ?: '—' }} | {{ $item->quantity }} | {{ $item->unit }} | {{ number_format($item->unit_price, 2) }} |
@if($item->discount_percent > 0)
{{ $item->discount_percent }}% ({{ number_format($item->discount_amount, 2) }}) @else — @endif |
{{ number_format($item->taxable_amount, 2) }} | @if($invoice->isInterState()){{ $item->igst_rate }}% {{ number_format($item->igst_amount, 2) }} |
@else
{{ $item->cgst_rate }}% {{ number_format($item->cgst_amount, 2) }} |
{{ $item->sgst_rate }}% {{ number_format($item->sgst_amount, 2) }} |
@endif
{{ number_format($item->total_amount, 2) }} |
| HSN/SAC | Taxable | @if($invoice->isInterState())IGST Rate | IGST Amt | @elseCGST % | CGST Amt | SGST % | SGST Amt | @endifTotal Tax |
|---|---|---|---|---|---|---|---|---|
| {{ $hsn ?: 'N/A' }} | {{ number_format($group->sum('taxable_amount'), 2) }} | @if($invoice->isInterState()){{ $group->first()->igst_rate }}% | {{ number_format($group->sum('igst_amount'), 2) }} | @else{{ $group->first()->cgst_rate }}% | {{ number_format($group->sum('cgst_amount'), 2) }} | {{ $group->first()->sgst_rate }}% | {{ number_format($group->sum('sgst_amount'), 2) }} | @endif{{ number_format($group->sum('cgst_amount') + $group->sum('sgst_amount') + $group->sum('igst_amount'), 2) }} |
| Subtotal | ₹{{ number_format($invoice->subtotal, 2) }} |
| Discount | -₹{{ number_format($invoice->discount_amount, 2) }} |
| Taxable Amount | ₹{{ number_format($invoice->taxable_amount, 2) }} |
| CGST | ₹{{ number_format($invoice->cgst_amount, 2) }} |
| SGST | ₹{{ number_format($invoice->sgst_amount, 2) }} |
| IGST | ₹{{ number_format($invoice->igst_amount, 2) }} |
| Cess | ₹{{ number_format($invoice->cess_amount, 2) }} |
| Round Off | ₹{{ number_format($invoice->round_off, 2) }} |
| Total Amount | ₹{{ number_format($invoice->total_amount, 2) }} |
| Amount Paid | ₹{{ number_format($invoice->amount_paid, 2) }} |
| Balance Due | ₹{{ number_format($invoice->amount_due, 2) }} |