@extends('admin.layouts.sellermastersoyuz') @section('title',__('Show Return Order Detail # :order',['order' => $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
{{__("Return & Refund Detail for Item :")}} @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')}} #{{ $inv_cus->order_prefix.$orderid }}
{{__('TXN ID')}}: {{ $order->txn_id }}
{{ __('Refunded On') }}: {{ date('d-m-Y @ h:i A',strtotime($order->updated_at)) }}

{{__("Customer Name")}}: {{ ucfirst($order->user->name) }}

{{__('Refund Method')}} : {{ ucfirst($order->pay_mode) }}

@if($order->pay_mode == 'bank')

{{__('Refunded To')}} {{ ucfirst($order->user->name) }}'s {{__("Bank A/C")}} XXXX{{ substr($order->bank->acno, -4) }}

@endif

{{__("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
@if(isset($order->getorder->simple_product)) {{ __('Sold By') }}: {{$order->getorder->simple_product->store->name}} @endif @if(isset($order->getorder->variant)) {{ __('Sold By') }}: {{$order->getorder->variant->products->store->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
@endsection