| Invoice No: {{ $invoice->invoice_no }} | Invoice Date: {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('d-m-Y') }} |
| Reference No: {{ $invoice->reference_no }} | Reference Date: {{ $invoice->reference_date ? \Carbon\Carbon::parse($invoice->reference_date)->format('d-m-Y') : '-' }} |
| Buyer (Bill to) | Shipping (if different) |
|---|---|
|
{{ $invoice->company->company ?? '' }} {{ $invoice->address }} GST No: {{ $invoice->company->gstno ?? '' }} Email: {{ $invoice->company->email ?? '' }} Phone: {{ $invoice->company->mobile ?? '' }} |
{{ $invoice->address }} |
| Sl. No | Description of Goods | HSN/SAC | Qty | Rate | Per | SGST (%) | CGST (%) | IGST (%) | Amount |
|---|---|---|---|---|---|---|---|---|---|
| {{ $i+1 }} | {{ $item->description }} | {{ $item->hsn }} | {{ $item->quantity }} | {{ number_format($item->rate, 2) }} | {{ $item->per }} | {{ $item->sgst }} | {{ $item->cgst }} | {{ $item->igst }} | {{ number_format($item->amount, 2) }} |
| Taxable Value: | {{ number_format($invoice->taxable_value, 2) }} |
| SGST: | {{ number_format($invoice->sgst, 2) }} |
| CGST: | {{ number_format($invoice->cgst, 2) }} |
| IGST: | {{ number_format($invoice->igst, 2) }} |
| Total Tax Amount: | {{ number_format($invoice->total_tax_amount, 2) }} |
| Total Amount: | {{ number_format($invoice->total_amount, 2) }} |
| Amount in Words: | {{ $invoice->amount_in_words }} |