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

{{ _lang('Automatic Deposit Methods') }}

@php $currency = currency(); @endphp @foreach($deposit_methods as $deposit_method)
{{ $deposit_method->name }}
{{ _lang('Deposit Limit') }} ({{ decimalPlace($deposit_method->minimum_amount, $currency) }} - {{ decimalPlace($deposit_method->maximum_amount, $currency) }})
{{ _lang('Deposit Charge') }} ({{ decimalPlace($deposit_method->fixed_charge, $currency) }} + {{ $deposit_method->charge_in_percentage }}%)
@endforeach
@endsection