@extends('mail.layout') @section('content')
Dear {{ $data->user?->name ?? 'Customer' }},
Thank you for your order with Aaleyat. Below are the details of your invoice.
{{-- ✅ Invoice Summary Box --}}Order Number: {{ $data->number }}
Date: {{ $data->last_status_time?->format('Y-m-d h:i A') }}
Status: {{ $data->status->value }}
Total Amount: {{ number_format($data->payment->total, 2) }}
This amount includes all applicable taxes and fees.
You can view your full invoice and order details from your account dashboard.
@if(!empty($actionUrl)) @endif