@lang('Advanced Search')
@lang('ID') |
@lang('Role') |
@lang('Permissions') |
@can('update', App\Role::class)
@lang('Edit') |
@endcan
@if($roles)
@foreach($roles as $role)
{{$role->id}} |
@if($role->id == 1)
{{$role->name}}
@else
{{$role->name}}
@endif
|
@if($role->id == 1)
@lang('All')
@else
@foreach($role->permissions as $permissions)
{{$permissions->name}} - {{$permissions->for}}
@endforeach
@endif
|
@can('update', App\Role::class)
@if($role->id !== 1)
@else
-
@endif
|
@endcan
@endforeach
@endif