# New Order Received
A new order has been placed on your website.
## Order Details
**Order Number:** {{ $order->formatted_order_number }}
**Date:** {{ $order->created_at->format('F j, Y \a\t g:i A') }}
**Total Amount:** {{ $order->currency }} {{ number_format($order->total_amount, 2) }}
**Payment Method:** {{ ucfirst($order->payment_method) }}
**Payment Status:** {{ ucfirst($order->payment_status) }}
**Order Status:** {{ ucfirst($order->status) }}
## Customer Information
**Name:** {{ $order->user->name ?? 'Guest' }}
**Email:** {{ $order->contact_email }}
**Phone:** {{ $order->contact_phone }}
## Shipping Address
@if($order->shipping_address)
**Name:** {{ $order->shipping_address['name'] ?? 'N/A' }}
**Address:** {{ $order->shipping_address['address'] ?? 'N/A' }}
**City:** {{ $order->shipping_address['city'] ?? 'N/A' }}
**State/Province:** {{ $order->shipping_address['state'] ?? 'N/A' }}
**Postal Code:** {{ $order->shipping_address['postal_code'] ?? 'N/A' }}
**Country:** {{ $order->shipping_address['country'] ?? 'N/A' }}
@else
No shipping address provided
@endif
## Billing Address
@if($order->billing_address)
**Name:** {{ $order->billing_address['name'] ?? 'N/A' }}
**Address:** {{ $order->billing_address['address'] ?? 'N/A' }}
**City:** {{ $order->billing_address['city'] ?? 'N/A' }}
**State/Province:** {{ $order->billing_address['state'] ?? 'N/A' }}
**Postal Code:** {{ $order->billing_address['postal_code'] ?? 'N/A' }}
**Country:** {{ $order->billing_address['country'] ?? 'N/A' }}
@else
No billing address provided
@endif
## Order Items
@foreach($order->orderItems as $item)
- **{{ $item->product->name }}** (Qty: {{ $item->quantity }}) - {{ $order->currency }} {{ number_format($item->price, 2) }} each
@endforeach
@if($order->notes)
## Customer Notes
{{ $order->notes }}
@endif
---
**Total Order Value:** {{ $order->currency }} {{ number_format($order->total_amount, 2) }}
View Order in Admin Panel
Thanks,
{{ config('app.name') }}