Invoice #{{ $invoice->id }}
|
Customer: {{ $invoice->customer->name ?? '-' }} @if($invoice->customer->email) {{ $invoice->customer->email }} @endif @if($invoice->customer->phone) {{ $invoice->customer->phone }} @endif |
Invoice Date: {{ $invoice->date->format('M d, Y') }} @if($invoice->due_date) Due Date: {{ $invoice->due_date->format('M d, Y') }} @endif Status: {{ ucfirst($invoice->status) }} |
| Product | Quantity | Unit Price | Subtotal |
|---|---|---|---|
| {{ $item->product->name ?? '-' }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->total, 2) }} |
| No items found. | |||
Total: {{ number_format($invoice->total, 2) }}
{{ $invoice->notes }}