{{ __('Admin') }} {{ __('Currencies') }}
{{ __('Admin · System · Localization') }}

{{ __('Platform') }} {{ __('currencies') }}

{{ __('Manage the currencies workspaces can pick. Exchange rates are stored relative to') }} {{ __('USD') }}. Changing the default propagates to every user dashboard, invoice, and wallet display through FormatSettings::currency().

@csrf
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif {{-- KPI strip --}}
{{ __('Total') }}
{{ $stats['total'] }}
{{ __('currencies configured') }}
{{ __('Active') }}
{{ $stats['active'] }}
{{ __('visible to workspaces') }}
{{ __('System default') }}
{{ $stats['default'] }}
{{ __('fallback for new workspaces') }}
{{ __('Inactive') }}
{{ $stats['inactive'] }}
{{ __('hidden from workspace settings') }}
{{-- Default currency selector --}}
{{ __('System default') }}

{{ __('Platform-wide currency fallback') }}

{{ __('Workspaces without an explicit currency choice use this one. Saving here flushes the cache instantly — the next page load anywhere in the app picks it up.') }}

@csrf
{{-- Add-currency form (hidden by default) --}} {{-- Search + currency list --}}
{{ __('Catalog') }}

{{ __('All currencies') }}

@forelse ($currencies as $c) @empty @endforelse
{{ __('Code') }} {{ __('Name') }} {{ __('Symbol') }} {{ __('Rate (1 USD →)') }} {{ __('Decimals') }} {{ __('Active') }}
{{ $c->code }} @if ($c->code === $defaultCode) {{ __('Default') }} @endif {{ $c->name }} {{ $c->symbol }} {{ number_format($c->exchange_rate, 4) }} {{ $c->precision }}
@csrf
@if ($c->code !== $defaultCode)
@csrf @method('DELETE')
@endif
@if ($q) No matches for "{{ $q }}". @else No currencies yet. @endif
{{-- Pagination footer --}}
{{ $currencies->links() }}