@extends('admin.layouts.master') @section('title', __('Custom Gateways')) @section('has-content-sidebar', 'has-content-sidebar') @section('content-sidebar') @include('admin.settings.content-sidebar') @endsection @section('content')

{{ __('Custom Gateways') }}

{{ __('Create and manage your own deposit and withdrawal gateways.') }}

{{-- Deposit Gateways --}}
{{ __('Deposit Gateways') }}
@if($depositGateways->count() > 0) @foreach($depositGateways as $gw) @endforeach
{{ __('Gateway Name') }} {{ __('Min / Max') }} {{ __('Fees') }} {{ __('Status') }}  
{{ $gw->name }} @if($gw->currencies) {{ implode(', ', $gw->currencies) }} @else {{ __('All currencies') }} @endif
{{ $gw->min_amount > 0 ? money($gw->min_amount, base_currency()) : __('No min') }} {{ $gw->max_amount > 0 ? money($gw->max_amount, base_currency()) : __('No max') }} {{ $gw->fixed_fee > 0 ? money($gw->fixed_fee, base_currency()) : '-' }} {{ $gw->percent_fee > 0 ? $gw->percent_fee.'%' : '-' }} {{ ucfirst($gw->status) }}
@else

{{ __('No custom deposit gateways yet.') }}

@endif
{{-- Withdraw Gateways --}}
{{ __('Withdrawal Gateways') }}
@if($withdrawGateways->count() > 0) @foreach($withdrawGateways as $gw) @endforeach
{{ __('Gateway Name') }} {{ __('Min / Max') }} {{ __('Fees') }} {{ __('Status') }}  
{{ $gw->name }} @if($gw->currencies) {{ implode(', ', $gw->currencies) }} @else {{ __('All currencies') }} @endif
{{ $gw->min_amount > 0 ? money($gw->min_amount, base_currency()) : __('No min') }} {{ $gw->max_amount > 0 ? money($gw->max_amount, base_currency()) : __('No max') }} {{ $gw->fixed_fee > 0 ? money($gw->fixed_fee, base_currency()) : '-' }} {{ $gw->percent_fee > 0 ? $gw->percent_fee.'%' : '-' }} {{ ucfirst($gw->status) }}
@else

{{ __('No custom withdrawal gateways yet.') }}

@endif
  • {{ __("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.") }}

@endsection @push('modal') {{-- Add/Edit Gateway Modal --}} @endpush @push('scripts') @endpush