@extends('layouts.admin') @section('title', 'Payment Methods') @section('page-title', 'Payment Methods') @section('content')

{{ $methods->count() }} methods configured

Add Method
@forelse($methods as $m) @empty @endforelse
Name Min Deposit Min Withdrawal Supports Withdrawal Status Actions
{{ $m->name }} ${{ number_format($m->min_deposit, 2) }} ${{ number_format($m->min_withdrawal, 2) }} {{ $m->supports_withdrawal ? 'Yes' : 'Deposit only' }} {{ $m->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No payment methods yet.
@endsection