@extends('emails.layout') @section('content')
Hello {{ $invoice->user->name }},
A new invoice has been generated for your account.
| Invoice Number: | {{ $invoice->invoice_number }} |
| Date: | {{ $invoice->date->format('F d, Y') }} |
| Due Date: | {{ $invoice->due_date->format('F d, Y') }} |
| Amount: | {{ format_currency($invoice->total) }} |
Thank you for your business!
@endsection