@if (isset($refund->product)) @php($product = $refund->product)
{{ translate('product') }} @if($product->discount > 0) @if ($product->discount_type == 'percent') {{round($product->discount)}}% @elseif($product->discount_type =='flat') {{ webCurrencyConverter(amount: $product->discount) }} @endif @endif
{{Str::limit($product['name'],40)}}
@if($order_details->variant)
{{translate('variant')}} : {{$order_details->variant}}
@endif
{{translate('qty')}} : {{$order_details->qty}}
{{translate('price')}} : {{ webCurrencyConverter(amount: $order_details->price) }}
{{ $order_details->created_at->format('d M Y, h:i a') }}
@else
{{translate('product_not_found')}}
@endif
{{translate('total_price')}}
{{ webCurrencyConverter(amount: $order_details->price) }}
{{translate('product_discount')}}
-{{ webCurrencyConverter(amount: $order_details->discount) }}
{{translate('vat')}}/{{translate('tax')}}
{{ webCurrencyConverter(amount: $order_details->tax) }}