Hi {{$order->buyer->name}}

Your order has been successfully placed.


@foreach($order->products as $item) @endforeach
Image Name Quantity Price
{{$item->product->name}} {{$item->quantity}} ₹{{($item->product->price )*($item->quantity)}}
Subtotal : ₹{{$order->subtotal}}
Tax : ₹{{$order->tax}}
Discount : - ₹{{$order->discount}}
Total : ₹{{$order->total}}