A new order has been placed on Loombymegh.
Order Number: {{ $order->order_number }}
Customer Name: {{ $order->name }}
Phone Number: {{ $order->phone }}
Email: {{ $order->email ?? 'N/A' }}
Address:
{{ $order->address }}
Payment Method: {{ $order->paymentMethod->name }}
@endif @if($order->deliveryMethod)Delivery Method: {{ $order->deliveryMethod->name }} (৳{{ number_format($order->shipping_cost, 2) }})
@endif| Product | Qty | Price |
|---|---|---|
|
{{ $item->product_name }}
@if($item->size || $item->color)
{{ $item->size ? 'Size: ' . $item->size : '' }} {{ $item->size && $item->color ? ' | ' : '' }} {{ $item->color ? 'Color: ' . $item->color : '' }} @endif |
{{ $item->quantity }} | ৳{{ number_format($item->price, 2) }} |
Subtotal: ৳{{ number_format($order->subtotal, 2) }}
Shipping: ৳{{ number_format($order->shipping_cost, 2) }}
This is an automated notification from Loombymegh.com.