{{ __('Custom Gateways') }}
{{ __('Create and manage your own deposit and withdrawal gateways.') }}
{{ __('Deposit Gateways') }}
@if($depositGateways->count() > 0)
@else
@endif
| {{ __('Gateway Name') }} | {{ __('Min / Max') }} | {{ __('Fees') }} | {{ __('Status') }} | |
|---|---|---|---|---|
|
{{ $gw->name }}
|
{{ $gw->min_amount > 0 ? money($gw->min_amount, base_currency()) : __('No min') }} | {{ $gw->fixed_fee > 0 ? money($gw->fixed_fee, base_currency()) : '-' }} | {{ ucfirst($gw->status) }} |
{{ __('No custom deposit gateways yet.') }}
{{ __('Withdrawal Gateways') }}
@if($withdrawGateways->count() > 0)
@else
@endif
| {{ __('Gateway Name') }} | {{ __('Min / Max') }} | {{ __('Fees') }} | {{ __('Status') }} | |
|---|---|---|---|---|
|
{{ $gw->name }}
|
{{ $gw->min_amount > 0 ? money($gw->min_amount, base_currency()) : __('No min') }} | {{ $gw->fixed_fee > 0 ? money($gw->fixed_fee, base_currency()) : '-' }} | {{ ucfirst($gw->status) }} |
{{ __('No custom withdrawal gateways yet.') }}
-
{{ __("Custom gateways work alongside the built-in payment modules. Users will see all active gateways when making deposits or withdrawals.") }}
-
{{ __("Custom gateway transactions require manual approval by an administrator.") }}