@foreach($authorizations as $parent_section => $sections)
@php
if(! isModuleEnabledForSection($parent_section)){
continue;
}
@endphp
@foreach($sections as $section => $permissions)
@php
if(! isModuleEnabledForSection($section)){
continue;
}
@endphp
@endforeach
{{ ucfirst(__($parent_section)) }}
- {{ ucfirst(__($section)) }}
-
@foreach($permissions as $permission) @if(!$permission->is_super_admin_only) @elseif(getAuthUser()->isSuperAdmin())@endif @endforeach{{ ucfirst(__($permission->name)) }}
This action is restricted to{{ __('Super admin') }}