{{ __('admin_currencies_label' ) }} @if (session()->has('message-error'))
{{ session('message-error') }}
@endif
{{ __('admin_currency_title') }} ({{$currencies->total()}})
@can('create_currencies') @endcan
@can('update_currencies') @endcan @forelse($currencies as $c) @can('update_currencies') @endcan @empty @endforelse
# {{ __('admin_table_name') }} {{ __('admin_table_code') }} {{ __('admin_table_symbol') }} {{ __('admin_table_decimal_separator') }} {{ __('admin_table_thousand_separator') }}Actions
{{ $loop->index + $currencies->firstItem() }} {{ $c->name }} {{ $c->code }} {{ $c->symbol }} {{ $c->decimal_separator }} {{ $c->thousand_separator }} {{ __('button_update') }} {{-- {{ __('button_delete') }} --}}
{{ __('admin_no_found_result') }}
{{ $currencies->links() }}
{{ $currency ? __('admin_currency_update') : __('admin_currency_add') }}
@if (session()->has('message-success'))
{{ session('message-success') }}
@endif
{{ __('button_cancel') }} {{ $currency ? __('button_update') : __('button_save') }}