|
Hi {{ $invoice->name }},
We have received your payment for invoice {{ $invoice->invoice_number ?? ('#'.$invoice->id) }}. Please keep this email as your receipt.
{{-- Receipt table --}}
|
Receipt Summary
|
| Invoice |
{{ $invoice->invoice_number ?? ('#'.$invoice->id) }} |
| Billed To |
{{ $invoice->name }} {{ $invoice->email }} |
| Business |
{{ $invoice->business_name }} |
@if (!empty($invoice->services))
| Services |
{{ implode(', ', $invoice->services) }} |
@endif
@if ($invoice->coupon_code)
| Coupon Applied |
{{ $invoice->coupon_code }} |
@endif
| Subtotal |
${{ number_format($subtotal, 2) }} CAD |
| GST (5%) |
${{ number_format($gst, 2) }} CAD |
| Total Paid |
${{ number_format($total, 2) }} CAD |
|
Date Paid
{{ $invoice->paid_at?->format('M d, Y h:i A') ?? now()->format('M d, Y') }}
|
Payment Method
Credit / Debit Card (Stripe)
|
View Invoice
If you have any questions please reply to this email or contact us directly.
Regards, {{ config('app.name') }} Team
|
{{-- Footer --}}