@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 }}, Thank you! Your payment has been received. Below are the details of the paid invoice.
You can view the full invoice in your client area: |