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

Mobile Withdraw Method Details

@if($method->logo) {{ $method->name }} @endif

Name: {{ $method->name }}

Slug: {{ $method->slug }}

Type: {{ ucfirst($method->type) }}

Min Amount: ৳{{ number_format($method->min_amount, 2) }}

Max Amount: ৳{{ number_format($method->max_amount ?? 0, 2) }}

Status: {{ $method->is_active ? 'Active' : 'Inactive' }}

Required Fields: {{ !empty($method->required_fields) ? implode(', ', $method->required_fields) : '—' }}

@endsection