{{ __('users::users.refund_transactions') }}

@if($financialRefunds->isNotEmpty()) @foreach($financialRefunds as $financialRefund) @endforeach
{{ __('financial_refunds.financial_refund_id') }} {{ __('financial_refunds.refund_fees') }} {{ __('financial_refunds.refundable_amount') }} {{ __('general.date') }} {{ __('general.time') }} {{ __('financial_refunds.transaction_status') }}
#{{ $financialRefund->id }} {{ $financialRefund->formatted_refund_fees_amount ?? "" }} {{ $financialRefund->formatted_amount ?? "" }} {{ $financialRefund->translated_date_format }} {{ $financialRefund->created_time_formatted }} {{ __("financial_refunds.status_$financialRefund->status") }}
@else
{{ __('general.no_results') }}
@endif

{{ __('users::users.wallet_transactions') }}

@if($balanceLogs->isNotEmpty()) @foreach($balanceLogs as $balanceLog) @endforeach
{{-- __('users::users.transaction_type') --}} {{ __('financial_refunds.transaction') }} {{ __('users::users.description') }} {{ __('users::users.date') }}
{{ __("general.balance_$balanceLog->symbol") }} {{ $balanceLog->formatted_text }} {{ $balanceLog->created_at->diffForHumans() }}
@else
{{ __('general.no_results') }}
@endif