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