{{-- Stats Cards --}}

{{ $totalCount }}

{{ __('Total Currencies') }}

{{ $activeCount }}

{{ __('Active Currencies') }}

{{ $totalCount - $activeCount }}

{{ __('Inactive Currencies') }}

{{-- Filter & Actions Panel --}}

{{ __('Currencies') }}

{{ __('Manage the currencies and exchange rates for your application.') }}

{{ __('Reset') }}
{{-- Currencies Table Panel --}}

{{ __('Currency Directory') }}

{{ __('Showing') }} {{ $currencies->count() }} {{ __('of') }} {{ $currencies->total() }} {{ __('currencies.') }}

@forelse($currencies as $currency) {{-- Edit Modal --}}
@csrf @method('PUT')

{{ __('Edit Currency') }}

Update the details for "{{ $currency->name }}".

{{-- Delete Modal --}} @unless($currency->is_default)
@csrf @method('DELETE')

Delete "{{ $currency->name }}" ({{ $currency->code }})?

{!! __('This currency will be permanently removed. This action cannot be undone.') !!}

@endunless @empty @endforelse
{{ __('Symbol') }} {{ __('Code') }} {{ __('Name') }} {{ __('Exchange Rate') }} {{ __('Position') }} {{ __('Decimal') }} {{ __('Status') }} {{ __('Default') }} {{ __('Actions') }}
{{ $currency->symbol }} {{ $currency->code }} {{ $currency->name }} {{ number_format((float) $currency->exchange_rate, 6) }} @if($currency->symbol_position === 'before') {{ __('Before') }} @else {{ __('After') }} @endif {{ $currency->decimal_digits }} {{ __('digits') }}
@csrf
@if($currency->is_default) {{ __('Default') }} @else
@csrf
@endif
@unless($currency->is_default) @endunless
{{ __('No currencies found.') }}
@if($currencies->hasPages())
{{ $currencies->withQueryString()->links() }}
@endif
{{-- Create Currency Modal --}}
@csrf

{{ __('Add Currency') }}

{{ __('Add a new currency to your application.') }}