Invoice {{ $invoice->invoice_number }}

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') }}

@foreach($invoice->lines as $line) @endforeach
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) }}
@if($invoice->notes)
Notes:
{{ $invoice->notes }}
@endif

To view your complete invoice or pay online, please click the button below:

View Invoice & Pay Online

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