@extends('admin.layouts.modules') @section('title', __('Bank Transfer - Withdraw Method')) @php $isExtend = module_exist('NioExtend', 'addon'); $formFieldMap = [ [ 'label' => __('Account Type'), 'name' => 'acc_type', 'show' => 'disabled', 'required' => 'disabled', 'default' => 'yes', ], [ 'label' => __('Account Holder Name'), 'name' => 'acc_name', 'show' => 'disabled', 'default' => 'yes', ], [ 'label' => __('Account Number'), 'name' => 'acc_no', 'show' => 'disabled', 'required' => 'disabled', 'default' => 'yes', ], [ 'label' => __('Name of Bank'), 'name' => 'bank_name', 'show' => 'disabled', 'required' => 'disabled', 'default' => 'yes', ], [ 'label' => __('Branch Name'), 'name' => 'bank_branch', 'default' => 'yes', ], [ 'label' => __('Bank Address'), 'name' => 'bank_address', 'default' => 'no', ], [ 'label' => __('Bank Currency'), 'name' => 'currency', 'show' => 'disabled', 'required' => 'disabled', 'default' => 'yes', ], [ 'label' => __('Bank Country'), 'name' => 'country', 'default' => 'yes', ], [ 'label' => __('Sort code'), 'name' => 'sortcode', 'default' => 'no', ], [ 'label' => __('IBAN Number'), 'name' => 'iban', 'default' => 'no', ], [ 'label' => __('Routing Number'), 'name' => 'routing', 'default' => 'no', ], [ 'label' => __('Swift / BIC'), 'name' => 'swift', 'default' => 'yes', ] ]; @endphp @section('content')

{{ __('Withdraw Methods') }}

{{ __('Manage withdraw methods for user.') }}

{{ __('Bank Transfer - Withdraw') }} {{ __('Core') }}

{{ __('Get the bank details from user for withdrawal funds.') }}

{{ __('Method Setting') }}
{{ __('Method title will use if leave blank. Use as short name in transaction record.') }}
{{ __('Default currency will be selected by default when user add account for withdraw.') }}
{{ base_currency() }}
{{ __('Amount will be convert') }}
{{ base_currency() }}
{{ __('Amount will be convert') }}
{{ __('Minimum Amount') }}
{{ __('Maximum Amount') }}
@if ($isExtend || is_demo())
@if($isExtend)
@endif
{{ __('Percent Fee') }}
{{ __('Flat Fee') }}
{{ __("Minimum Fee") }}
{{ __("Compare") }}
@endif

{{ __('Please Note:') }}
1 {{ __("The amount will apply only if its more than the base minimum / maximum withdraw amount.") }}
2 {{ __("The fixed minimum / maximum amount will be set same for each currency & override others.") }}
@if ($isExtend) 3 {{ __("Fee will apply on withdraw currency and same for all currencies. Both percent & flat fee will applied if present.") }}
@endif

{{ __('Supported Currency') }}

{{ __('Specify currency wise minimum / maximum amount for :type.', ['type' => __("Withdraw")]) }}

@foreach($currencies as $currency)
{{ __('Minimum') }}
{{ __('Maximum') }}
@if ($isExtend || is_demo())
{{ __('Percent Fee') }}
{{ __('Flat Fee') }}
@endif
@endforeach
{{ __('Allow or disallowed the countries into application.') }}
{{ __('Specify the country do you want to display or hide from the list.') }}
{{ __('Display Form Fields') }}
@foreach($formFieldMap as $field)

{{ $field['label'] }}

@endforeach
  • {{ __("Changes any fields does not affect on existing account as it only applicable for new account.") }}

  • {{ __('These form fields will show to user when they are adding an account for withdraw.') }}

@csrf
@endsection