@extends('front.layout.master') @section('title',"Return Product |") @section('body')
{{ __('staticwords.Item') }} | {{ __('staticwords.qty') }} | {{ __('staticwords.Price') }} | {{ __('staticwords.TotalGiftCharge') }} | {{ __('staticwords.HandlingCharge') }} | {{ __('staticwords.Total') }} | {{ __('staticwords.Deliveredat') }} |
---|---|---|---|---|---|---|
@if(isset($findvar))
@else
@endif
@if(isset($findvar))
{{$findvar->products->name}}
({{ variantname($findvar) }})
@else
{{$order->simple_product->product_name}}
@endif
@if(isset($findvar)) {{ __('staticwords.SoldBy') }}: {{$findvar->products->store->name}} @else {{ __('staticwords.SoldBy') }}: {{$order->simple_product->store->name}} @endif |
{{$order->qty}} |
@if($order->order->discount !=0)
{{ price_format($order->qty*$order->price+$order->tax_amount+$order->shipping-$order->discount) }}
@else
{{ price_format($order->qty*$order->price+$order->tax_amount+$order->shipping) }}
@endif
({{ __('Incl. of Tax & Shipping') }}) |
{{ $order->gift_charge }} | @infloat($order->handlingcharge) | @if($order->order->discount !=0) {{ price_format(($order->qty*$order->price)+$order->tax_amount+$order->handlingcharge+$order->shipping-$order->discount+$order->gift_charge) }} @else {{ price_format(($order->qty*$order->price)+$order->tax_amount+$order->handlingcharge+$order->shipping+$order->gift_charge) }} @endif |
@php
$days = $findvar->products->returnPolicy->days ?? $order->simple_product->returnPolicy->days;
$endOn = date("d-M-Y", strtotime("$order->updated_at +$days days"));
@endphp
{{ date('d-M-Y @ h:i A',strtotime($order->updated_at)) }}
({{ __('staticwords.ReturnPolicyEndsOn') }} {{ $endOn }}) |