@php $client = $invoice->client; $currency = $invoice->getCurrency(); $formatAmount = function($amount) use ($currency) { return ($currency->prefix ?? '') .' '. number_format($amount, 2) .' '. ($currency->suffix ?? ''); }; @endphp

Dear {{ $client->company_name ? $client->company_name . ' (' . $client->firstname . ' ' . $client->lastname . ')' : $client->firstname . ' ' . $client->lastname }},

This is to inform you that a Proforma Invoice has been generated for your account.

Proforma Invoice Number: #{{ $invoice->number }}
Amount Due: {{ $formatAmount($invoice->total) }}
Due Date: {{ $invoice->due_date->format('j.m.Y') }}

You can log in to your client area to view and pay the invoice:

View Invoice in Client Area