Invoice Receipt
Dear {{ $invoice->customer->full_name ?? 'Valued Customer' }},
Thank you for your business. Please find your invoice attached to this email.
Invoice Number: {{ $invoice->invoice_number }}
Invoice Date: {{ $invoice->invoice_date->format('M d, Y') }}
Due Date: {{ $invoice->due_date ? $invoice->due_date->format('M d, Y') : 'Pay Upon Receipt' }}
Total Amount: ${{ number_format($invoice->total, 2) }}
Task Reference: {{ $task->title }}
The invoice has been attached as a PDF document. Please review it and contact us if you have any questions.
@if(config('app.company_phone') || config('app.company_email'))If you have any questions, please contact us:
-
@if(config('app.company_phone'))
- 📞 Phone: {{ config('app.company_phone') }} @endif @if(config('app.company_email'))
- ✉️ Email: {{ config('app.company_email') }} @endif