@extends('emails.layout')
@section('title', 'Order Confirmed')
@section('content')
Thank you for your order, {{ $order->customer->name }}! 🎉
Your order has been confirmed and is now being processed. We're excited to get you connected!
✅ Order Confirmed!
Order Number: {{ $order->order_number }}
Order Date: {{ $order->created_at->format('F j, Y \a\t g:i A') }}
Order Summary
| Package |
{{ $order->package->name }} ({{ $order->package->speed_mbps }}Mbps) |
| Monthly Subscription |
${{ number_format($order->monthly_subscription, 2) }}/month |
| Installation Fee |
${{ number_format($order->installation_fee, 2) }} |
@if($order->extension_cost > 0)
| Infrastructure Extension |
${{ number_format($order->extension_cost, 2) }} |
@endif
| Equipment Cost |
${{ number_format($order->equipment_cost, 2) }} |
| Total Amount |
${{ number_format($order->total_amount, 2) }} |
Installation Details
| Service Address |
{{ $order->service_address }} |
@if($order->preferred_installation_date)
| Preferred Date |
{{ \Carbon\Carbon::parse($order->preferred_installation_date)->format('F j, Y') }} |
@endif
| Estimated Lead Time |
{{ $order->extension_cost > 0 ? '30-45 working days' : '21 working days' }} |
📌 What Happens Next?
1. Our technical team will review your order
2. We'll conduct a site survey (if required)
3. You'll receive installation schedule confirmation
4. Our technicians will install your service
5. You'll be connected and ready to go!
You can track your order status anytime by logging into your account. We'll keep you updated via email at each stage of the process.
📞 Need to make changes?
Contact our support team within 24 hours if you need to modify your order details.
@endsection