Proforma Invoice

{{ $invoice->company->name }}

Bill To:

{{ $invoice->customer->name ?? '—' }}

Details:

Proforma #: {{ $invoice->invoice_number }}

Date: {{ $invoice->invoice_date->format('d M Y') }}

@foreach($invoice->items as $idx => $item) @endforeach
# Product Qty Unit Price Total
{{ $idx + 1 }} {{ $item->product->brand_name ?? '—' }} {{ $item->quantity }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->total, 2) }}
@if($invoice->discount_amount > 0) @endif
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) }}
@if($invoice->terms)
Terms & Conditions

{{ $invoice->terms }}

@endif