Hello {{ $invoice->client->name }},

This is a friendly reminder that invoice {{ $invoice->invoice_number }} from {{ $company->business_name }} still has an outstanding balance.

Invoice date: {{ $invoice->issue_date->format('d M Y') }}
Due date: {{ $invoice->due_date->format('d M Y') }}
Invoice total: R {{ number_format($invoice->grand_total, 2) }}
Amount paid: R {{ number_format($totalPaid, 2) }}
Outstanding balance: R {{ number_format($remainingBalance, 2) }}

You can view and pay your invoice securely using the links below.

View Invoice @if ($payUrl) Pay Now @endif

@if ($payUrl)

Pay link: {{ $payUrl }}

@endif

A PDF copy of the invoice is attached for your records.

Thank you,
{{ $company->business_name }} @if ($company->email)
{{ $company->email }} @endif @if ($company->phone)
{{ $company->phone }} @endif