# Order Confirmation #{{ $order->id }} Hi {{ $order->customer_name }}, Thank you for your order! We have received it and will process it shortly. **Shipping Details:** - **Name:** {{ $order->customer_name }} - **Email:** {{ $order->customer_email }} - **Phone:** {{ $order->customer_phone }} - **Address:** {{ $order->address_line_1 }} @if($order->address_line_2){{ $order->address_line_2 }} @endif @if($order->landmark) (Near: {{ $order->landmark }}) @endif {{ $order->city }}, {{ $order->state }} - {{ $order->pincode }} {{ $order->country }} @if($order->order_notes) **Order Notes:** {{ $order->order_notes }} @endif **Total Amount:** ${{ number_format($order->total_amount, 2) }} Continue Shopping Thanks,
{{ config('app.name') }}