@extends('admin.layouts.modules') @section('title', __('Crypto Wallet - Payment Method')) @php $isExtend = module_exist('NioExtend', 'addon'); @endphp @section('content')

{{ __('Payment Methods') }}

{{ __('Manage payment methods to receive payment from user.') }}

{{ __('Crypto Wallets') }} {{ __('Core') }}

{{ __('Receive crypto (ETH, BTC, LTC, etc) payment manually on the platform.') }}

{{ __('Method Setting') }}
{{ __('Method title will use if leave blank.') }}
{{ __('Crypto amount show in currency') }}
{{ __('An expiry countdown will display.') }}
{{ base_currency() }}
{{ __('Amount will be convert') }}
{{ base_currency() }}
{{ __('Amount will be convert') }}
{{ __('Option to generate image') }}
@if ($isExtend || is_demo())
@if($isExtend)
@endif
{{ __('Percent Fee') }}
{{ __('Flat Fee') }}
{{ __("Minimum Fee") }}
{{ __("Compare") }}
@endif
    @foreach($currencies as $currency)
  • @endforeach

{{ __('Please Note:') }}
{{ __('Ensure you have access of your wallet and entered correct address.') }}
{{ __('If enable supported wallet but did not add address then it will inactive automatically.') }}

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

@foreach ($currencies as $currency) @php $code = $currency['code']; $code_lower = strtolower($currency['code']); @endphp
@php $network = (isset($networks[$code_lower])) ? $networks[$code_lower] : false; @endphp @if(!empty($network) && is_array($network))
@endif
{{ $code }}
{{ $code }}
@if ($isExtend || is_demo())
{{ '%' }}
{{ $code }}
@endif @if($code == 'ETH')
@endif
@endforeach
@csrf
@endsection