{{ $record->title }} @isset($breadcrumbs) @endisset

{{ $record->title }}

Back Edit

Permissions for {{ $record->title }}

{{ $record->description }}

By default, this role has the following permissions for newly added record types:
@foreach(['create', 'read', 'update', 'delete'] as $action)
{{ $action }}:
@if ($record->{'can_' . $action}) Allowed @else Not allowed @endif
@endforeach
Other Capabilities
@foreach([ 'can_manage_roles' => 'Manage Roles', 'can_manage_users' => 'Manage Users', 'can_manage_ipass' => 'Manage iPass', 'can_manage_adhoc' => 'Manage Adhoc', 'can_manage_documents' => 'Manage Documents' ] as $field => $label)
{{ $label }}:
{!! $record->$field ? ' Yes' : ' No' !!}
@endforeach
@foreach($recordTypes as $type) @php $perms = $record->permissions->firstWhere('record_type_scriptid', $type->scriptid); @endphp
{{ $type->title }}
{{ $type->title }}
@foreach(['create', 'read', 'update', 'delete'] as $action)
{{ $action }}:
@if($perms && $perms->{'can_' . $action}) Allowed (explicit) @elseif(!$perms && $record->{'can_' . $action}) Allowed (via role default) @else Not allowed @endif
@endforeach
@endforeach