@lang('filed_of_study.filed_of_studies')
@lang('filed_of_study.filedOfStudiesCount'): {{ $filedOfStudyCount }}
@if (auth('admin')->user()->hasPermissionTo('create filed_of_study', 'admin')) @endif
@if (session('message'))
{{ session('message') }}
@endif @if ($errors->any())) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif @foreach ($FiledOfStudy as $filedOfStudy) @endforeach
@lang('filed_of_study.ID') @lang('filed_of_study.ArabicName') @lang('filed_of_study.EnglishName') @lang('filed_of_study.NoOfEmployees') @lang('filed_of_study.Actions')
{{ $filedOfStudy->id }} {{ $filedOfStudy->name_ar }} {{ $filedOfStudy->name_en }} {{ $filedOfStudy->employees_count }} @if (auth('admin')->user()->hasPermissionTo('view filed_of_study', 'admin')) @lang('filed_of_study.show') @endif @if (auth('admin')->user()->hasPermissionTo('update filed_of_study', 'admin')) @endif @if (auth('admin')->user()->hasPermissionTo('delete filed_of_study', 'admin'))
@csrf @method('DELETE')
@endif