@php $fields = Botble\Marketplace\Enums\PayoutPaymentMethodsEnum::getFields($paymentChannel); @endphp @if($fields)

{{ $title ?? __('You will receive money through the information below') }}

@foreach ($fields as $key => $field) @if (Arr::get($bankInfo, $key)) {{ Arr::get($field, 'title') }} {{ Arr::get($bankInfo, $key) }} @endif @endforeach
@isset($link)

{!! BaseHelper::clean(__('You can change it 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')))

{{ __('Tax info') }}

@if (Arr::get($taxInfo, 'business_name')) {{ __('Business Name') }} {{ Arr::get($taxInfo, 'business_name') }} @endif @if ($taxId = Arr::get($taxInfo, 'tax_id')) {{ __('Tax ID') }} {{ $taxId }} @endif @if ($address = Arr::get($taxInfo, 'address')) {{ __('Address') }} {{ $address }} @endif
@endif