@forelse($withdrawAccounts as $account)
{{ title($account->name) }}
@if($account->withdrawMethod->type == MethodType::AUTOMATIC)
{{ __('Automatic') }}
@else
{{ __('Manual') }}
@endif
{{ __('Fee: ') }}
{{ $account->withdrawMethod->charge }}{{ $account->withdrawMethod->charge_type === FixPctType::PERCENT ? '%' : ' '.$account->withdrawMethod->currency }}
|
{{ __('Min-Max: ') }} {{ $account->withdrawMethod->min_withdraw }}
- {{ $account->withdrawMethod->max_withdraw }} {{ $account->withdrawMethod->currency }}
@empty
@endforelse