@extends('layouts.back-end.app-seller') @section('title', \App\CPU\translate('refund_list')) @section('content')

{{\App\CPU\translate('refund_request_list')}} {{$refund_list->total()}}

@foreach($refund_list as $key=>$refund) @endforeach
{{\App\CPU\translate('SL')}} {{\App\CPU\translate('order_ID')}} {{\App\CPU\translate('product_Info')}} {{\App\CPU\translate('customer_Info')}} {{\App\CPU\translate('Total_Amount')}} {{\App\CPU\translate('Order_Status')}} {{\App\CPU\translate('Action')}}
{{$refund_list->firstItem()+$key}} {{$refund->order_id}} @if ($refund->product!=null)
{{\Illuminate\Support\Str::limit($refund->product->name,35)}} {{ \App\CPU\translate('qty') }} : {{ $refund->order_details->qty }}
@else {{\App\CPU\translate('product_name_not_found')}} @endif
@if ($refund->customer !=null) @else {{\App\CPU\translate('customer_not_found')}} @endif {{\App\CPU\Helpers::currency_converter($refund->amount)}} {{\App\CPU\translate($refund->status)}}
{!! $refund_list->links() !!}
@if(count($refund_list)==0)
Image Description

{{ \App\CPU\translate('No_data_to_show')}}

@endif
@endsection @push('script_2') @endpush