@php
$symbol = $invoice->currency instanceof \App\Enums\Currency
? $invoice->currency->symbol()
: (string) $invoice->currency;
$remaining = $invoice->remainingAmount();
$daysOverdue = max(1, (int) now()->diffInDays($invoice->due_date, false) * -1);
$daysLabel = $daysOverdue === 1 ? '1 day' : $daysOverdue . ' days';
@endphp
Invoice {{ $invoice->invoice_number }} — Payment Overdue
|
Echt Solutions Inc
Digital Solutions & Web Development
|
|
Overdue
Payment reminder
Hi {{ $invoice->client->name }}, invoice {{ $invoice->invoice_number }} for {{ $invoice->project->title }} is {{ $daysLabel }} overdue.
|
|
|
| Invoice Number |
{{ $invoice->invoice_number }} |
|
| Project |
{{ $invoice->project->title }} |
|
| Original Due Date |
{{ $invoice->due_date->format('d M Y') }} |
|
| Days Overdue |
{{ $daysLabel }} |
|
| Amount Outstanding |
{{ $symbol }} {{ number_format((float) $remaining, 2) }} |
|
|
|
Please arrange payment using any of the methods below and reply to this email with your payment confirmation.
| • Bank Transfer |
• Wise |
| • Payoneer |
• JazzCash |
| • EasyPaisa |
• PayPal |
|
|
If you have already arranged this payment, please disregard this notice and accept our thanks.
|
|
|
Echt Solutions Inc · info@echtsolutions.com
This is an automated payment reminder · Please do not reply directly to this email
|
|