New Order Placed

Hello Admin,

A new order #{{ $order->order_number }} has been placed by User: {{ $user->name }} ({{ $user->email }}). Please review the details below:

Date: {{ $order->created_at->format('F d, Y') }}

Payment Method: {{ $order->payment_method == 'stripe' ? 'Payment before Delivery' : 'Payment after Delivery' }}

@foreach ($order->orderDetails as $id => $orderDetail) @php $product = $orderDetail->product; @endphp @endforeach
# Name Quantity
{{ ++$id }} {{ $product->sku }} {{ $orderDetail->quantity }}

Please log in to the system to review and take necessary action.