@extends('admin.layouts.sellermastersoyuz') @section('title',"Show Return Order Detail #$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