@php $logo = \App\Models\Setting::get('company_logo'); @endphp @if(!empty($logo))
@endif {{ \App\Models\Setting::get('company_name', 'JointaSoft') }}
{{ \App\Models\Setting::get('company_address', 'P.O Box 80058, Dar es Salaam') }} | Phone: {{ \App\Models\Setting::get('company_phone') }}
BILLED TO:
{{ $invoice->client->name }}
@if($invoice->client->company_name) {{ $invoice->client->company_name }}
@endif {{ $invoice->client->address }}
{{ $invoice->client->city }}, {{ $invoice->client->country }}
INVOICE DETAILS:
Invoice Number: {{ $invoice->invoice_number }}
Invoice Date: {{ $invoice->invoice_date->format('d M Y') }}
Due Date: {{ $invoice->due_date->format('d M Y') }}
Status: {{ $invoice->status }}
@foreach($invoice->items as $item) @endforeach
Item Description Amount
{{ $item->description }} {{ number_format($item->amount, 2) }} {{ $invoice->currency }}
Subtotal {{ number_format($invoice->subtotal, 2) }} {{ $invoice->currency }}
Tax / VAT {{ number_format($invoice->tax, 2) }} {{ $invoice->currency }}
Total Due {{ number_format($invoice->total, 2) }} {{ $invoice->currency }}