{{ __('keywords.Order_Id') }} : {{ $order->cart_id }}
{{ __('keywords.Customer_name') }} :
{{ $order->address->receiver_name }}
{{ __('keywords.Contact') }} :
{{ $order->address->receiver_phone }},
@if ($order->address->user_phone != $order->address->receiver_phone)
{{ $order->address->receiver_phone }}
@endif
{{ __('keywords.Delivery_Date') }} : {{ $order->delivery_date }}
{{ __('keywords.Time_Slot') }} : {{ $order->time_slot }}
|
{{ __('keywords.Delivery Address') }}
{{ $order->address->type }} :
{{ $order->address->house_no }},{{ $order->address->society }},
@if ($order->address->landmark != null)
{{ $order->address->landmark }},
@endif
{{ $order->address->city }},{{ $order->address->state }},
{{ $order->address->pincode }}
|
|
Payment Method: {{ $order->payment_method }}
|
|
| {{ __('keywords.Product_Name') }} |
{{ __('keywords.Qty') }} |
{{ __('keywords.Price') }} |
@if ($order->orderItems->isNotEmpty())
@php $total = 0; @endphp
@php $i=1; @endphp
@foreach ($order->orderItems as $item)
|
{{ $item->product_name }}({{ $item->quantity }})
|
{{ $item->qty }} |
@php
$mrp = $item->variation->mrp;
$price = $item->variation->price;
$percentOff =
$mrp > 0 && $price > 0 ? round((($mrp - $price) / $mrp) * 100) : 0;
@endphp
{{ $percentOff }}%
off
MRP₹{{ $mrp }}
₹{{ $price }}
@if ($item->variation->variation_attributes->isNotEmpty())
@php
$attributes = $item->variation->variation_attributes
->map(function ($attribute) {
return $attribute->attribute->attribute->name .
':' .
$attribute->attribute->name;
})
->implode(', ');
@endphp
{{ $attributes }}
@endif
|
@php $i++; @endphp
@endforeach
@else
| {{ __('keywords.No data found') }} |
@endif
| {{ __('keywords.Products_Price') }} : |
₹{{ $order->price_without_delivery + $order->coupon_discount }}
|
| {{ __('keywords.Delivery_Charge') }} : |
+₹{{ $order->delivery_charge }}
|
@if ($order->paid_by_wallet > 0)
| {{ __('keywords.Paid By Wallet') }} : |
-₹{{ $order->paid_by_wallet }}
|
@endif
@if ($order->coupon_discount > 0)
| {{ __('keywords.Coupon Discount') }} : |
-₹{{ $order->coupon_discount }}
|
@endif
| {{ __('keywords.Net_Total(Payable)') }}: |
₹{{ $order->rem_price }}
|