@extends('admin.master') @section('content')

Bank Withdraw Methods

Manage all bank withdraw methods

Add Bank
@if(session('success'))
{{ session('success') }}
@endif
@forelse($methods as $key => $method) @empty @endforelse
# Logo Name Slug Min Amount Max Amount Required Fields Status Action
{{ $methods->firstItem() + $key }} @if($method->logo) {{ $method->name }} @else
@endif
{{ $method->name }} {{ $method->slug }} ৳{{ number_format($method->min_amount, 2) }} ৳{{ number_format($method->max_amount ?? 0, 2) }} @if(!empty($method->required_fields)) {{ implode(', ', $method->required_fields) }} @else — @endif {{ $method->is_active ? 'Active' : 'Inactive' }}
Show Edit
@csrf @method('DELETE')
No bank method found.
@if(method_exists($methods, 'links')) @endif
@endsection