@extends('layouts.back-end.app') @section('title', translate('withdraw_method_list')) @section('content')
| {{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 |