Payment Methods {{-- LivewireAlert scripts --}} @push('scripts') @endpush
  • {{-- Display LivewireAlert notifications --}}
    @if (!$add_new && !$edit) @can('add payment method') @endcan

    NOTE: You can make use of automatic payment for your added crypto payment methods. Only supported coins in Coinpayment. To view supported coins, Click here. Strictly enter the symbol of the coin in the Symbol textbox provided. eg for Shiba Inu, use SHIB, USD Coin, use USDC etc...

    @foreach ($methods as $method) @endforeach
    Method Name Type Used for Status Action
    {{ $method->name }} {{ ucfirst($method->methodtype) }} @if ($method->type === 'both') Deposit & Withdrawal @else {{ ucfirst($method->type) }} @endif @if ($method->status == 'active') Enabled @else Disabled @endif @can('edit payment method') @if ($method->status == 'active') @else @endif @endcan @can('delete payment method') @endcan
    {{ $methods->links() }}
    @endif @if ($add_new) @include('livewire.admin.settings.payment.add-payment') @endif @if ($edit) @include('livewire.admin.settings.payment.edit-payment') @endif