@extends('admin.layouts.app') @section('panel')
@forelse($methods as $method) @empty @endforelse
@lang('Method') @lang('Currency') @lang('Charge') @lang('Withdraw Limit') @lang('Status') @lang('Action')
{{ __($method->name) }} {{ __($method->currency) }} {{ showAmount($method->fixed_charge) }} {{ __($general->cur_text) }} {{ 0 < $method->percent_charge ? ' + ' . showAmount($method->percent_charge) . ' %' : '' }} {{ $method->min_limit + 0 }} - {{ $method->max_limit + 0 }} {{ __($general->cur_text) }} @php echo $method->statusBadge; @endphp
@can('admin.withdraw.method.edit') @lang('Edit') @endcan @can('admin.withdraw.method.status') @if ($method->status == Status::ENABLE) @else @endif @endcan
{{ __($emptyMessage) }}
@endsection @push('breadcrumb-plugins')
@can('admin.withdraw.method.create') @lang('Add New') @endcan @endpush