@extends('admin.layouts.master') @section('title', __('Manage Currencies')) @section('has-content-sidebar', 'has-content-sidebar') @section('content-sidebar') @include('admin.settings.content-sidebar') @endsection @php $supported_currency = array_keys(sys_settings('supported_currency', '{}')); $automatic_ex_rates = $exchange_rates[$exchange_methods->AUTOMATIC]; $manual_ex_rates = $exchange_rates[$exchange_methods->MANUAL]; @endphp @section('content')

{{ __('Manage Currencies') }}

{{ __('You can manage currency what you want to use in application.') }}

{{ __('Currencies') }}
{{ __('Set the main / base currency on system.') }}
{{ __('It also applied on personal account management.') }}
{{ __('System Default Currency') }}
{{ __('Set secondary currency to display alternal balance.') }}
{{ __('Alternet Display Currency') }}
{{ __('Important Note:') }}
{{ __('If change the Base Currency after any transaction made, it will occurred in whole calculation.') }}
{{ __('Must update exchange rate accordingly after currency change.') }}
{{ __('Enable or disable one or multiple currencies') }}
{{ __('on systems from available list.') }}
    @foreach($currencies as $code => $name)
  • @endforeach
{{ __('Currency Exchage') }}
{{ __('Set how exchange rate calculate.') }}
AUTOMATIC) == $exchange_methods->AUTOMATIC) ? ' style="display:none"' : '' !!}>
@foreach($currencies as $code => $name) @if(!in_array($code, $supported_currency)) @continue @endif
{{ $code }}
@endforeach
AUTOMATIC) == $exchange_methods->MANUAL) ? ' style="display:none"' : '' !!}>
{{ __('Get exchange rate automatially after selected time.') }}
{{ __('(Read only)') }}
@foreach($currencies as $code => $name) @if(!in_array($code, $supported_currency)) @continue @endif
{{ $code }}
@endforeach
{{ __('Last Update:') }} {{ sys_settings('exchange_last_update') ? show_date(sys_settings('exchange_last_update'), true) : __('Waiting for update.') }} @if (sys_settings('exratesapi_error_msg')) / {{ __("Last Failed Note: :msg", ['msg' => sys_settings('exratesapi_error_msg')]) }} @endif
{{ __('Round the amount while currency conversion.') }}
{{ __("Up as 1.55 => 2 | Down as 1.55 => 1") }}
{{ __('Fiat Currency') }}
{{ __('Crypto Currency') }}
@csrf
@endsection