🛒 New Order Received

📢 Action Required: A new order has been placed on your website. Please review and process it.

Order Information

Order Number: {{ $order->order_number }}
Order Date: {{ $order->created_at->format('F j, Y \a\t g:i A') }}
Payment Method: @switch($order->payment_method) @case('chipin') 💳 Online Payment @break @case('bank_transfer') 🏦 Bank Transfer @break @case('cash_on_delivery') 💵 Cash on Delivery @break @default {{ ucfirst(str_replace('_', ' ', $order->payment_method)) }} @endswitch
Payment Status: {{ ucfirst($order->payment_status) }}

Customer Information

Name: {{ $order->customer_name }}
Email: {{ $order->customer_email }}
@if($order->customer_phone)
Phone: {{ $order->customer_phone }}
@endif
@if($order->items && $order->items->count() > 0)

Order Items

@foreach($order->items as $item) @endforeach
Product Qty Price Total
{{ $item->product_name }} @if($item->variation_details)
{{ $item->variation_details }} @endif
{{ $item->quantity }} {{ $website->getCurrencySymbol() }} {{ number_format($item->unit_price, 2) }} {{ $website->getCurrencySymbol() }} {{ number_format($item->total_price, 2) }}
Total Amount: {{ $website->getCurrencySymbol() }} {{ number_format($order->total_amount, 2) }}
@endif @if($order->billing_address_line_1)

Shipping Address

{{ $order->shipping_address_line_1 }}
@if($order->shipping_address_line_2) {{ $order->shipping_address_line_2 }}
@endif {{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_postal_code }}
{{ $order->shipping_country }}

@endif @if($order->notes)

Customer Notes

{{ $order->notes }}

@endif
View Order Details