{{-- Success card --}}

Order Confirmed!

Thank you, {{ $order->customer_name }}

Order Number

{{ $order->order_number }}

{{ now()->format('d M Y, h:i A') }}

{{-- Order items --}}

Items Ordered

@foreach($order->items as $item)
{{ $item->item_name }} × {{ $item->quantity }} ₹{{ number_format($item->total_amount, 2) }}
@endforeach
Total ₹{{ number_format($order->total_amount, 2) }}
{{-- Notifications info --}}
@if($order->customer_email)
📧 Invoice sent to {{ $order->customer_email }}
@endif @if($settings?->whatsapp_number && $order->whatsapp_sent)
💬 Invoice sent to WhatsApp {{ $order->customer_phone }}
@endif
{{-- Download invoice button --}} @if($order->invoice) 📄 Download Invoice PDF @endif {{-- WhatsApp button --}} @if($settings?->whatsapp_number) 💬 Message on WhatsApp @endif ← Continue Shopping