Official tax invoices for retail purchases, rentals, and service charges.
| Invoice # | Customer | Type | Date | GST Tax | Total Amount | Status | Actions |
|---|---|---|---|---|---|---|---|
| @if(!empty($inv->customer->company_name) && $inv->customer->company_name !== $inv->customer->name) {{ $inv->customer->company_name }} {{ $inv->customer->name }} @else {{ $inv->customer->name }} @endif {{ $inv->customer->phone }} @php $custGst = $inv->customer->gstin ?? $inv->customer->tax_number_gstin ?? null; @endphp @if($custGst) GST: {{ $custGst }} @endif | {{ str_replace('_', ' ', $inv->invoice_type) }} | {{ $inv->invoice_date->format('d M Y') }} | ₹{{ number_format($inv->tax_amount, 2) }} | ₹{{ number_format($inv->total_amount, 2) }} | {{ $inv->status }} | ||
| No sales invoices found. | |||||||
Issued on {{ $viewingInvoice->invoice_date->format('d M Y') }} • Due {{ $viewingInvoice->due_date ? $viewingInvoice->due_date->format('d M Y') : 'Immediate' }}
| # | Item / Service Description | HSN/SAC | Qty | Unit Rate | Discount | GST Tax | Total (₹) |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->item_description }} @if($item->product) SKU: {{ $item->product->sku }} @endif | {{ $item->hsn_sac_code }} | {{ $item->quantity }} {{ $item->unit_of_measure }} | ₹{{ number_format($item->unit_price, 2) }} | ₹{{ number_format($item->discount_amount, 2) }} | ₹{{ number_format($item->cgst_amount + $item->sgst_amount + $item->igst_amount, 2) }} ({{ $item->tax_rate_percent }}%) | ₹{{ number_format($item->total_amount, 2) }} |
| No items listed on this invoice. | |||||||
{{ $viewingInvoice->notes }}
| Value | GST | Amount |
|---|---|---|
| ₹{{ number_format($mSubTotal, 2) }} | ₹{{ number_format($mTaxTotal, 2) }} | ₹{{ number_format($mGrandTotal, 2) }} |
| Sub Total | ₹{{ number_format($mSubTotal, 2) }} | |
| Freight | ₹{{ number_format($mFreight, 2) }} | |
| IGST | ₹{{ number_format($mIgst, 2) }} | |
| CGST | ₹{{ number_format($mCgst, 2) }} | |
| SGST | ₹{{ number_format($mSgst, 2) }} | |
| Discount | - ₹{{ number_format($viewingInvoice->discount_amount, 2) }} | |
| Grand Total | ₹{{ number_format($mGrandTotal, 2) }} |