@include('tags.show_fields')
@can('user manage permission')
| {{ucfirst(config('settings.document_label_plural'))}} permissions in this {{config('settings.tags_label_singular')}} |
| User |
Permissions |
@if (count($tagWisePermList)==0)
| No record found |
@endif
@foreach ($tagWisePermList as $perm)
| {{$perm['user']->name}} |
@foreach ($perm['permissions'] as $p)
@endforeach
|
@endforeach
| Permission inherited from global {{config('settings.document_label_plural')}} |
| User |
Permissions |
@if (count($globalPermissionUsers)==0)
| No record found |
@endif
@foreach ($globalPermissionUsers as $user)
| {{$user->name}} |
@foreach(config('constants.GLOBAL_PERMISSIONS.DOCUMENTS') as $perm_key=>$value)
@if ($user->can($perm_key))
@endif
@endforeach
|
@endforeach
@endcan