Hi, {{ $order->customer->name }}Congratulations! Your order has been successfully received, and will be Delivered as soon as possible.

  • {{ $order->customer->name }}
  • @isset($order->address)
  • {{ $order->address->house }} , {{ $order->address->road }}
  • {{ $order->address->city }} , {{ $order->address->pin }}
  • {{ $order->address->phone }}
  • @endisset
Invoice Number {{ $order->order_id }}
Invoice Date {{ $order->created_at->format('d-m-Y') }}
@if($order->type == \App\Models\Orders\Order::TYPE_CART) @else @endif @if($order->type == \App\Models\Orders\Order::TYPE_CART) @foreach($order->products as $item) @endforeach @else @endif
Description Unit Quantity Unit Price Id Type MRP Total
{{ $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