@extends('emails.layout') @section('title', 'Order Confirmed') @section('header_subtitle', 'Orders') @section('content')

Thank you for your order, {{ $order->customer->name }}! ๐ŸŽ‰

Your order is confirmed and being processed. We're excited to get you connected!

{{-- Order confirmed badge --}}

โœ… Order Confirmed  ยท  Order Number: {{ $order->order_number }}  ยท  {{ $order->created_at->format('d M Y') }}

{{-- Order summary --}}

Order Summary

@if($order->extension_cost > 0) @endif
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) }}
Infrastructure Extension${{ number_format($order->extension_cost, 2) }}
Equipment Cost${{ number_format($order->equipment_cost, 2) }}
Total Amount${{ number_format($order->total_amount, 2) }}
{{-- Installation details --}}

Installation Details

@if($order->preferred_installation_date) @endif
Service Address{{ $order->service_address }}
Preferred Date{{ \Carbon\Carbon::parse($order->preferred_installation_date)->format('d M Y') }}
Est. Lead Time{{ $order->extension_cost > 0 ? '30โ€“45 working days' : '21 working days' }}
{{-- What's next --}}

๐Ÿ“Œ What happens next?

1.  Technical team reviews your order

2.  Site survey conducted (if required)

3.  Installation schedule confirmed

4.  Technicians install your service

5.  You're connected and ready to go!

Track Your Order →

๐Ÿ“ž Need to make changes? Contact our support team within 24 hours if you need to modify your order details.

@endsection