@extends('front.layout.master') @section('title',"Return Product |") @section('body')
{{ __('staticwords.Item') }} | {{ __('staticwords.qty') }} | {{ __('staticwords.Price') }} | {{ __('staticwords.HandlingCharge') }} | {{ __('staticwords.Total') }} | {{ __('staticwords.Deliveredat') }} |
---|---|---|---|---|---|
{{$order->qty}} |
@if($order->order->discount !=0)
{{ round($order->qty*$order->price+$order->tax_amount+$order->shipping-$order->discount,2) }}
@else
{{ round($order->qty*$order->price+$order->tax_amount+$order->shipping,2) }}
@endif
({{ __('Incl. of Tax & Shipping') }}) |
{{ $order->handlingcharge }} | @if($order->order->discount !=0) {{ round($order->qty*$order->price+$order->tax_amount+$order->handlingcharge+$order->shipping-$order->discount,2) }} @else {{ round($order->qty*$order->price+$order->tax_amount+$order->handlingcharge+$order->shipping,2) }} @endif |
@php
$days = $findvar->products->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 }}) |