@php
$fields = Botble\Marketplace\Enums\PayoutPaymentMethodsEnum::getFields($paymentChannel);
@endphp
@if($fields)
{{ $title ?? trans('plugins/marketplace::withdrawal.receive_money_info') }}
@foreach ($fields as $key => $field)
@if (Arr::get($bankInfo, $key))
{{ Arr::get($field, 'title') }}
{{ Arr::get($bankInfo, $key) }}
@endif
@endforeach
@isset($link)
{!! BaseHelper::clean(trans('plugins/marketplace::withdrawal.change_info_here', ['link' => $link])) !!}.
@endisset
@endif
{!! apply_filters('marketplace_withdrawal_payout_info', null) !!}
@if ($taxInfo && (Arr::get($taxInfo, 'business_name') || Arr::get($taxInfo, 'tax_id') || Arr::get($taxInfo, 'address')))
{{ trans('plugins/marketplace::marketplace.tax_info') }}
@if (Arr::get($taxInfo, 'business_name'))
{{ trans('plugins/marketplace::marketplace.business_name') }}
{{ Arr::get($taxInfo, 'business_name') }}
@endif
@if ($taxId = Arr::get($taxInfo, 'tax_id'))
{{ trans('plugins/marketplace::marketplace.tax_id') }}
{{ $taxId }}
@endif
@if ($address = Arr::get($taxInfo, 'address'))
{{ trans('plugins/marketplace::marketplace.address') }}
{{ $address }}
@endif
@endif