Address: {{ $company->address ?? 'N/A' }}
Phone: {{ $company->phone ?? 'N/A' }}
Email: {{ $company->email ?? 'N/A' }}
VAT No: {{ $company->vat_no ?? 'N/A' }}
TIN No: {{ $company->tax_id ?? 'N/A' }}
| Invoice #: | {{ $invoice->invoice_number }} |
| Date: | {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('M d, Y') }} |
| Due Date: | {{ $invoice->due_date ? \Carbon\Carbon::parse($invoice->due_date)->format('M d, Y') : 'N/A' }} |
| Status: | {{ ucfirst($invoice->status) }} |
Customer: {{ $invoice->customer->customer_account ?? 'N/A' }}
Code: {{ $invoice->customer->customer_code ?? 'N/A' }}
Address: {{ $invoice->customer->address ?? 'N/A' }}
Phone: {{ $invoice->customer->contact_1 ?? 'N/A' }}
Email: {{ $invoice->customer->email ?? 'N/A' }}
Customer: {{ $invoice->customer->customer_account ?? 'N/A' }}
Code: {{ $invoice->customer->customer_code ?? 'N/A' }}
Address: {{ $invoice->customer->address ?? 'N/A' }}
Phone: {{ $invoice->customer->contact_1 ?? 'N/A' }}
Email: {{ $invoice->customer->email ?? 'N/A' }}
| Description | Quantity | Unit Price | Discount | Total |
|---|---|---|---|---|
| {{ $item->item }} | {{ number_format($item->quantity, 2) }} | ${{ number_format($item->unit_price, 2) }} | {{ number_format($item->discount, 2) }}% | ${{ number_format($item->line_total, 2) }} |
| No invoice items found | ||||
| Subtotal: | ${{ number_format($invoice->subtotal, 2) }} |
| Discount: | -${{ number_format($invoice->discount_total, 2) }} |
| Tax (10%): | ${{ number_format($invoice->tax_amount, 2) }} |
| Total Amount: | ${{ number_format($invoice->total, 2) }} |
Received By:
Name & Signature
Authorized By:
Name & Signature