{{ __('Product') }} | {{ __('Details') }} | {{ __('Total') }} |
---|---|---|
@if($product['item']['user_id'] != 0) @php $user = App\Models\User::find($product['item']['user_id']); @endphp @if(isset($user)) {{ $product['item']['name']}} @else {{$product['item']['name']}} @endif @else {{ $product['item']['name']}} @endif |
@if($product['size'])
{{ __('Size') }} : {{str_replace('-',' ',$product['size'])}} @endif @if($product['color']){{ __('Color') }} : @endif{{ __('Price') }} : {{ \PriceHelper::showOrderCurrencyPrice(($product['item_price'] * $order->currency_value),$order->currency_sign) }} {{ __('Qty') }} : {{$product['qty']}} {{ $product['item']['measure'] }} |
{{ \PriceHelper::showOrderCurrencyPrice(($product['price'] * $order->currency_value),$order->currency_sign) }} {{ $product['discount'] == 0 ? '' : '('.$product['discount'].'% '.__('Off').')' }} |
{{ __('Subtotal') }} | {{ \PriceHelper::showOrderCurrencyPrice($subtotal,$order->currency_sign) }} | |
{{ __('Shipping Cost') }}({{$order->currency_sign}}) | {{ \PriceHelper::showOrderCurrencyPrice($order->shipping_cost,$order->currency_sign) }} | |
{{ __('Packaging Cost') }}({{$order->currency_sign}}) | {{ \PriceHelper::showOrderCurrencyPrice($order->packing_cost,$order->currency_sign) }} | |
{{ __('TAX') }}({{$order->currency_sign}}) | {{ \PriceHelper::showOrderCurrencyPrice($tax,$order->currency_sign) }} | |
{{ __('Coupon Discount') }}({{$order->currency_sign}}) | {{ \PriceHelper::showOrderCurrencyPrice($order->coupon_discount,$order->currency_sign) }} | |
{{ __('Total') }} | {{ \PriceHelper::showOrderCurrencyPrice((($order->pay_amount + $order->wallet_price) * $order->currency_value),$order->currency_sign) }} |