@php use Illuminate\Support\Str; @endphp @extends('layouts.back-end.app') @section('title',translate('refund_transactions')) @section('content')
{{translate('SL')}} | {{translate('product')}} | {{translate('refund_id')}} | {{translate('order_id')}} | {{translate('shop_name')}} | {{translate('payment_method') }} | {{translate('payment_status')}} | {{translate('paid_by')}} | {{translate('amount')}} | {{translate('transaction_type')}} |
---|---|---|---|---|---|---|---|---|---|
{{$refundTransactions->firstItem()+$key}} |
@if($refund_transaction->orderDetails->product)
|
@if ($refund_transaction->refund_id) {{$refund_transaction->refund_id}} @else {{translate('not_found')}} @endif | {{$refund_transaction->order_id}} | @if($refund_transaction->order->seller_is == 'seller' && $refund_transaction->order->seller) {{ $refund_transaction->order->seller->shop->name }} @else {{translate('inhouse')}} @endif | {{translate(str_replace('_',' ',$refund_transaction->payment_method))}} | {{translate(str_replace('_',' ',$refund_transaction->payment_status))}} | {{translate($refund_transaction->paid_by)}} | {{setCurrencySymbol(amount: usdToDefaultCurrency(amount: $refund_transaction->amount), currencyCode: getCurrencyCode())}} | {{ $refund_transaction->transaction_type == 'Refund' ? translate('refunded') : str_replace('_',' ',$refund_transaction->transaction_type)}} |