@extends('layouts.app') @section('content')

{{ _lang('Withdraw Methods') }}

@foreach($withdraw_methods as $withdraw_method)
{{ $withdraw_method->name }}
{{ _lang('Withdraw Limit') }} ({{ decimalPlace($withdraw_method->minimum_amount, currency($withdraw_method->currency->name)) }} - {{ decimalPlace($withdraw_method->maximum_amount, currency($withdraw_method->currency->name)) }})
{{ _lang('Withdraw Charge') }} ({{ decimalPlace($withdraw_method->fixed_charge, currency($withdraw_method->currency->name)) }} + {{ $withdraw_method->charge_in_percentage }}%)
{{ _lang('Make Withdraw') }}
@endforeach
@endsection