@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title',translate('refund_requests')) @section('content')
{{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 }}
|
@if ($refund->customer !=null)
{{$refund->customer->f_name. ' '.$refund->customer->l_name}}
@if($refund->customer->phone)
{{$refund->customer->phone}}
@else
{{$refund->customer['email']}}
@endif
@else
{{translate('customer_not_found')}}
@endif
|
{{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund->amount), currencyCode: getCurrencyCode())}}
|