@extends('admin.layouts.master-soyuz') @section('title',__('Show Return Order Detail # :orderid | ',['orderid' => $inv_cus->order_prefix.$orderid])) @section('title','Returned Orders |') @section('body') @component('admin.component.breadcumb',['secondactive' => 'active']) @slot('heading') {{ __('Return Orders') }} @endslot @slot('menu2') {{ __("View return order") }} @endslot @endcomponent
{{__('Item')}} | {{__('Qty')}} | {{__('Refunded Amount')}} | {{__("Additional Info.")}} |
---|---|---|---|
@if(isset($order->getorder->variant))
@if($order->getorder->variant->variantimages)
@else
@endif
@endif
@if(isset($order->getorder->simple_product))
@endif
@if(isset($order->getorder->variant))
{{ $order->getorder->variant->products->name }}
{{ variantname($order->getorder->variant) }}
@endif
@if(isset($order->getorder->simple_product))
{{ $order->getorder->simple_product->product_name }}
@endif
|
{{$order->getorder->qty}} | {{ $order->amount }} |
@if($order->txn_fee !='')
{{ __("Transcation FEE:") }} {{ $order->txn_fee }} ({{__("During Bank Transfer")}}) @endif @if($order->getorder->variant) @if($order->variant->products->returnPolicy->amount !=0 || $order->variant->products->returnPolicy->amount !=''){{__("As per Product")}} {{$order->variant->products->returnPolicy->name}} {{__("Policy")}} {{$order->variant->products->returnPolicy->amount}}% {{__('is deducted from Order Amount.') }} @endif @endif @if(isset($order->getorder->simple_product)) @if($order->getorder->simple_product->returnPolicy->amount !=0 || $order->getorder->simple_product->returnPolicy->amount !=''){{__("As per Product")}} {{$order->getorder->simple_product->returnPolicy->name}} {{__("Policy")}} {{$order->getorder->simple_product->returnPolicy->amount}}% {{ __("is deducted from Order Amount.") }} @endif @endif |