@extends('emails.layout') @section('title', 'Invoice Generated') @section('header_subtitle', 'Billing') @section('content')
Hi {{ $invoice->customer->name }}, your invoice is ready for payment.
{{-- Amount due highlight --}}Amount Due
${{ number_format($invoice->total_amount, 2) }}
Invoice {{ $invoice->invoice_number }}
Invoice Details
| Invoice Date | {{ $invoice->invoice_date ? $invoice->invoice_date->format('d M Y') : 'N/A' }} |
| Due Date | {{ $invoice->due_date ? $invoice->due_date->format('d M Y') : 'N/A' }} |
| Order # | {{ $invoice->salesOrder->order_number ?? 'N/A' }} |
| Status | {{ ucfirst($invoice->status) }} |
Line Items
| {{ $item['description'] ?? 'Item' }} | ${{ number_format($item['amount'] ?? 0, 2) }} |
| Total | ${{ number_format($invoice->total_amount, 2) }} |
Payment Methods
💳 Pesepay — Pay instantly with EcoCash, InnBucks, or Card
🏦 Bank Transfer — Transfer and upload proof of payment
⚠️ Important: Please ensure payment is made before the due date to avoid service interruption.