@extends('admin.layouts.app') @section('main_content')

{{translate($title)}}

{{translate("Withdraw Method List")}}
@if(permission_check('create_method')) @endif
@forelse($withdrawMethods as $withdrawMethod) @empty @endforelse
# {{translate("Method Name")}} {{translate("Currency Rate")}} {{translate("Charge")}} {{translate("Withdraw Limit")}} {{translate("Duration")}} {{translate("Status")}} {{translate("Action")}}
{{$loop->iteration}}
{{$withdrawMethod->name}}
{{$withdrawMethod->name}}
1 {{default_currency()->name}} = {{round(($withdrawMethod->rate))}} {{@$withdrawMethod->currency->name}} {{round(($withdrawMethod->fixed_charge))}} + {{round(($withdrawMethod->percent_charge))}} % {{round(($withdrawMethod->min_limit))}} - {{round(($withdrawMethod->max_limit))}} {{(default_currency()->name)}} {{$withdrawMethod->duration}} {{translate('Hour')}} @if($withdrawMethod->status == 1) {{translate('Active')}} @else {{translate('Inactive')}} @endif
@if(permission_check('update_method')) @endif @if(permission_check('delete_method')) @endif
@include('admin.partials.not_found')
{{$withdrawMethods->links()}}
@include('admin.modal.delete_modal') @endsection @push('script-push') @endpush