Hello {{ $user->name }},
Your order #{{ $order->order_number }} payment status has been updated to:
{{ str_replace('_', ' ', $order->payment_status) }}
Date: {{ $order->updated_at->format('F d, Y') }}
Payment Method: {{ $order->payment_method == 'stripe' ? 'Payment before Delivery' : 'Payment after Delivery' }}
Here are the order details:
| # | Product Name | Quantity |
|---|---|---|
| {{ ++$id }} | {{ $product->sku }} | {{ $orderDetail->quantity }} |
You can log in to your account to track your order.