@extends('layouts.back-end.app') @section('title', translate('withdraw_method_list')) @section('content')

{{translate('withdraw_method_list')}}

+ {{translate('add_method')}}
{{ translate('methods')}} {{ $withdrawalMethods->total() }}
@foreach($withdrawalMethods as $key => $withdrawalMethod) @endforeach
{{translate('SL')}} {{translate('method_name')}} {{ translate('method_fields') }} {{translate('active_status')}} {{translate('default_method')}} {{translate('action')}}
{{$withdrawalMethods->firstitem() + $key}} {{$withdrawalMethod['method_name']}} @foreach($withdrawalMethod['method_fields'] as $methodField) {{translate('name').':'}} {{translate($methodField['input_name'])}} | {{translate('type').':'}} {{ $methodField['input_type'] }} | {{translate('placeholder').':'}} {{ $methodField['placeholder'] }} | {{translate('is_Required').':'}} {{ $methodField['is_required'] ? translate('yes') : translate('no') }}
@endforeach
@csrf
@csrf
@if(!$withdrawalMethod->is_default)
@csrf @method('delete')
@endif
{{$withdrawalMethods->links()}}
@if(count($withdrawalMethods)==0) @include('layouts.back-end._empty-state',['text'=>'no_withdraw_method_found'],['image'=>'default']) @endif
@endsection