|
{{ $userAccount->id ?? '' }}
|
{{ $userAccount->uid ?? '' }}
|
{{ $userAccount->name ?? '' }}
|
{{ $userAccount->email ?? '' }}
|
{{ $userAccount->pdsid ?? '' }}
|
{{ $userAccount->suid ?? '' }}
|
{{ $userAccount->user_type->name ?? '' }}
|
{{ $userAccount->user_type->code ?? '' }}
|
{{ App\Models\UserAccount::LOGIN_ALLOWED_RADIO[$userAccount->login_allowed] ?? '' }}
|
@foreach($userAccount->permission_access_modules as $key => $item)
{{ $item->name }}
@endforeach
|
@can('user_account_show')
{{ trans('global.view') }}
@endcan
@can('user_account_edit')
{{ trans('global.edit') }}
@endcan
@can('user_account_delete')
@endcan
|
@endforeach