|
Company Information
@if($company && $company->logo_path && file_exists(public_path($company->logo_path)))
@php
$logo = base64_encode(file_get_contents(public_path($company->logo_path)));
$ext = pathinfo(public_path($company->logo_path), PATHINFO_EXTENSION);
@endphp
Name: {{ $company->company_name ?? 'N/A' }}
Address: {{ $company->address ?? 'N/A' }}
Tel No: {{ $company->phone ?? 'N/A' }}
Email: {{ $company->email ?? 'N/A' }}
Website: {{ $company->website ?? 'N/A' }}
VAT No: {{ $company->vat_no ?? 'N/A' }}
TIN No: {{ $company->tax_id ?? 'N/A' }}
Currency: USD
|
Customer Information
Customer Name: {{ $invoice->customer->customer_account ?? '—' }}
Customer Code: {{ $invoice->customer->customer_code ?? '—' }}
Address: {{ $invoice->customer->address ?? '—' }}
Email: {{ $invoice->customer->email ?? '—' }}
Phone: {{ $invoice->customer->contact_1 ?? '—' }}
Contact Person: {{ $invoice->contact_person ?? '—' }}
City: {{ $invoice->customer->city ?? '—' }}
Province: {{ $invoice->customer->province ?? '—' }}
VAT No: {{ $invoice->customer->vat ?? '—' }}
TIN No: {{ $invoice->customer->tin ?? '—' }}
|
| Item | Qty | Price | Disc % | 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 | ||||
|
Received by: ______________________________
Date: ______________________________
Signed: ______________________________
|
|