@extends('emails.layout') @section('content')

New Invoice Generated

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

View Invoice

Thank you for your business!

@endsection