{{ __('admin_dictionaries_label' ) }} @if (session()->has('message-error'))
{{ session('message-error') }}
@endif
{{ __('admin_dictionnary_title') }} ({{$dictionaries->total()}})
@can('create_dictionaries') @endcan
@forelse($dictionaries as $d) @can('update_dictionaries') @endcan @empty @endforelse
# {{ __('admin_table_dictionary_type') }} {{ __('admin_table_code') }} {{ __('admin_table_description') }} Actions
{{ $loop->index + $dictionaries->firstItem() }} {{ $d->type->description }} {{ $d->code }} {{ $d->description }} {{ __('button_update') }} {{-- {{ __('button_delete') }} --}}
{{ __('admin_no_found_result') }}
{{ $dictionaries->links() }}
{{ $dictionary ? __('admin_dictionnary_update') : __('admin_dictionnary_add') }}
@if (session()->has('message-success'))
{{ session('message-success') }}
@endif
{{ __('button_cancel') }} @if(!$dictionary) {{ __('button_save') }} @else {{ __('button_update') }} @endif