New Order Received!
Invoice: #{{ $order->invoice_no }} | Order ID: #{{ $order->id }}
Customer Details
{{ $order->first_name }} {{ $order->last_name }}
{{ $order->mobile }}
{{ $order->shipping_address }}
{{ $order->mobile }}
{{ $order->shipping_address }}
Order Date
{{ date('d M, Y', strtotime($order->created_at)) }}
Payment Method
{{ $order->payment_method ?? 'COD' }}
Order Summary
| Item | Qty | Total |
|---|---|---|
|
{{ $detail->product->name ?? 'Product' }}
@if($detail->variation_id)
Size: {{ $detail->variation->size->title ?? '-' }} | Color: {{ $detail->variation->color->name ?? '-' }} @endif |
{{ $detail->quantity }} | {{ $detail->unit_price * $detail->quantity }} Tk |
Sub Total =
{{ $order->amount - ($order->shipping_charge ?? 0) }} Tk
Delivery Charge
+ {{ $order->shipping_charge }} Tk
@if($order->discount > 0)
Discount
- {{ $order->discount }} Tk
@endif
Total Amount =
{{ $order->final_amount }} Tk