@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title',translate('refund_requests')) @section('content')

{{translate($status.'_'.'refund_Requests')}} {{$refundList->total()}}

@foreach($refundList as $key=>$refund) @endforeach
{{translate('SL')}} {{translate('refund_ID')}} {{translate('order_id')}} {{translate('product_info')}} {{translate('customer_info')}} {{translate('total_amount')}} {{translate('action')}}
{{$refundList->firstItem()+$key}} {{$refund['id']}} {{$refund->order_id}} @if ($refund->product !=null)
{{Str::limit($refund->product->name,35)}} {{translate('QTY')}} : {{ $refund->orderDetails->qty }}
@else {{translate('product_name_not_found')}} @endif
@if ($refund->customer !=null) @else {{translate('customer_not_found')}} @endif
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->amount), currencyCode: getCurrencyCode())}}
{!! $refundList->links() !!}
@if(count($refundList) == 0) @include('layouts.back-end._empty-state',['text'=>'no_refund_request_found'],['image'=>'default']) @endif
@endsection