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

{{translate('refund_request_list')}} {{$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