Dear {{ $invoice->client->primary_contact?->first_name ?? 'Valued Customer' }},
Please find below a summary of your invoice from eBandroom.
| Invoice Number: | {{ $invoice->invoice_number }} |
| Invoice Date: | {{ $invoice->invoice_date?->format('F j, Y') }} |
| Due Date: | {{ $invoice->due_date?->format('F j, Y') }} |
| Description | Amount |
|---|---|
|
{{ $line->product?->name ?? $line->description }}
@if($line->description && $line->product)
{{ $line->description }} @endif |
${{ number_format($line->amount, 2) }} |
| Total Due: | ${{ number_format($invoice->balance_due, 2) }} |
To view your complete invoice or pay online, please click the button below:
If you have any questions about this invoice, please don't hesitate to contact us.
Thank you for your business,
{{ config('app.name') }}
This email was sent regarding invoice {{ $invoice->invoice_number }}.