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

Mobile Withdraw Methods

Manage all mobile withdraw methods

Add Method
@if(session('success'))
{{ session('success') }}
@endif
@forelse($methods as $key => $method) @empty @endforelse
# Logo Name Slug Type Min Amount Max Amount Required Fields Status Action
{{ $methods->firstItem() + $key }} @if($method->logo) {{ $method->name }} @else
@endif
{{ $method->name }} {{ $method->slug }} {{ ucfirst($method->type) }} ৳{{ 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 method found.
@if(method_exists($methods, 'links')) @endif
@endsection