Hello, {{ ucwords($sellerInfo->name) }}
Thank you for choosing ekhadiindia.com to sell your products. An order has been placed on
ekhadiindia.com
on {{date('jS F Y', $order->date )}} at {{date('h:i A', $order->date)}} Order Code {{ $order->code }}.
For
processing/support, go to My Account on ekhadiindia.com.
| # | {{ translate('Product Name') }} | {{ translate('Sku') }} | {{ translate('Quantity') }} | {{ translate('Unit Price') }} | {{ translate('Total Price') }} |
|---|---|---|---|---|---|
| {{$loop->iteration}} | {{ $sellerWithOrderItem->product->name }} | {{$sellerWithOrderItem->product->stocks[0]->sku}} | {{ $sellerWithOrderItem->quantity }} | ₹ {{ number_format((float)($sellerWithOrderItem->price/$sellerWithOrderItem->quantity), 2, '.', '') }} | ₹ {{ number_format((float)@$sellerWithOrderItem->price, 2, '.', '') }} |
| Coupon Discount | {!! $rupees.number_format((float)@$order->coupon_discount, 2, '.', '') !!} | ||||
| Shipping & Handling Charge | @if( $grandTotal < minShippingAmount() ) {!! $rupees.number_format((float) shippingCharge(), 2, '.', '') !!} @else @endif | ||||
| Total Amount | ₹ {{ number_format((float) $grandTotal, 2, '.', '') }} | ||||