@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app-seller') @section('title', translate('refund_list')) @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())}} |