{{ $invoice->company->name }}
{{ $invoice->customer->name ?? '—' }}
Proforma #: {{ $invoice->invoice_number }}
Date: {{ $invoice->invoice_date->format('d M Y') }}
| # | Product | Qty | Unit Price | Total |
|---|---|---|---|---|
| {{ $idx + 1 }} | {{ $item->product->brand_name ?? '—' }} | {{ $item->quantity }} | ₹{{ number_format($item->price, 2) }} | ₹{{ number_format($item->total, 2) }} |
| Subtotal: | ₹{{ number_format($invoice->subtotal, 2) }} |
| Tax: | ₹{{ number_format($invoice->tax_amount, 2) }} |
| Discount: | - ₹{{ number_format($invoice->discount_amount, 2) }} |
| Total: | ₹{{ number_format($invoice->total_amount, 2) }} |
{{ $invoice->terms }}