|
|---|
|
Hi, {{ $order->customer->name }}Congratulations! Your order has been successfully received, and will be Delivered as soon as possible. |
|---|
|
|
|---|
| Description | @if($order->type == \App\Models\Orders\Order::TYPE_CART)Unit | Quantity | Unit Price | @elseId | Type | MRP | @endifTotal |
|---|---|---|---|---|---|---|---|
| {{ $item->product->name }} | {{ $item->variations->first()->variant->unit }} | {{ $item->variations->first()->quantity }} | {{ $item->variations->first()->variant->price['currency'] }} | ₹{{ $item->variations->first()->total }} | |||
| {{ $order->name }} | {{ $order->order_id }} | {{ \Illuminate\Support\Str::upper($order->type) }} | {{ $order->mrp['currency'] }} | {{ $order->total['currency'] }} | |||
| Total | {{ $order->total['currency'] }} |
Thanks for ordering |
|---|