@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.

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

You can view the full invoice in your client area:

View Invoice in Client Area