New Order Notification

Order #{{ $order->id }}

Action Required: New order received and awaiting processing

Order Summary

Order Number: {{ $order->id }}
Order Date: {{ $order->created_at->format('F j, Y \a\t g:i A') }}
Total Items: {{ $orderItems->count() }}
Total Quantity: {{ $orderItems->sum('quantity') }}
Payment Method: {{ ucfirst($order->payment_option) }}
Order Value: {{ number_format($order->total_amount, 2) }} {{ $config->currancy ?? '' }}

Customer Information

Name: {{ $customer->first_name }} {{ $customer->last_name }}
Email: {{ $customer->user->email }}
Phone: {{ $customer->phone }}
Address: {{ $customer->address }}, {{ $customer->city }}, {{ $customer->state }} {{ $customer->zip }}, {{ $customer->country }}

Order Items

@foreach ($orderItems as $item) @endforeach
Product Name Quantity Unit Price Total
{{ $item->product->name }} {{ $item->quantity }} {{ number_format($item->price, 2) }} {{ $config->currancy ?? '' }} {{ number_format($item->total, 2) }} {{ $config->currancy ?? '' }}
TOTAL ORDER VALUE {{ number_format($order->total_amount, 2) }} {{ $config->currancy ?? '' }}

Required Actions

Please complete the following within 24 hours:

  • Verify inventory availability for all ordered items
  • Update order status in the admin dashboard
  • Process payment (if not already completed)
  • Prepare items for shipping
  • Send shipping confirmation to customer

Admin Dashboard: Log in to your admin panel to manage this order and update its status.