@lang('modules.currencySettings.currencyName')
@lang('modules.currencySettings.currencySymbol')
@lang('modules.currencySettings.currencyCode')
@lang('modules.currencySettings.exchangeRate')
@lang('modules.accountSettings.currencyFormat')
@lang('app.action')
@forelse($currencies as $key => $currency)
{{ $currency->currency_name }}
@if (companyOrGlobalSetting()->currency_id == $currency->id)
@endif
{{ $currency->currency_symbol }}
{{ $currency->currency_code }}
{{ !is_null($currency->exchange_rate) ? $currency->exchange_rate : '--' }}
{{ currency_format(1000, $currency->id) }}
@if (companyOrGlobalSetting()->currency_id != $currency->id)
@endif
@empty
@endforelse