@extends('layouts.md-admin') @section('title', trans('cruds.areaOfExpertise.title')) @section('content')
{{ trans('cruds.areaOfExpertise.title_singular') }} {{ trans('global.list') }}
@can('area_of_expertise_create') {{ trans('global.add') }} @endcan
{{-- --}} @foreach ($areaOfExpertises as $key => $areaOfExpertise) {{-- --}} @endforeach
{{ trans('cruds.areaOfExpertise.fields.id') }} {{ trans('cruds.areaOfExpertise.fields.name') }}  
{{ $areaOfExpertise->id ?? '' }} {{ $areaOfExpertise->name ?? '' }} {{-- @can('area_of_expertise_show') {{ trans('global.view') }} @endcan --}} @can('area_of_expertise_edit') @endcan @can('area_of_expertise_delete')
@endcan
@endsection @section('scripts') @parent @endsection