@extends('layouts.main') @section('content') @include('partials.breadcrumb', ['breadcrumbTitle' => 'User Detail', 'parentUrl' => '/users', 'parentTitle' => 'Users'])
@if($user!=null)
Name
{{ $user->userName }}
Email
{{ $user->email }}
Employee ID
{{ $user->employee_id }}
Hire Date
{{ $user->hire_date }}
Terminated Date
{{$user->terminated_date}}
Status
{{ $user->status == 1 ? 'Active' : 'Terminated' }}
Legal Hold
{{ $user->legalhold== 1 ? 'Yes' : 'No' }}
User Type
{{ $user->employeeType->name ?? '' }}
Teqtivity Role
{{ $user->userType->name ?? '' }}
Title
{{ $user->position->name ?? '' }}
Department
{{$user->department->name ?? ''}}
Work Location
{{ $user->city}}
Country
{{ $user->country->name ?? ''}}
Created Date
{{parse_date_from_db_datetime($user->created_at)}}
Modified Date
{{parse_date_from_db_datetime($user->updated_at)}}

Assigned Assets

@include('users.assets-in-user')

Assigned Software Assets

@include('users.licenses-in-user')

Person History

@include('users.person-history')

License History ({{ is_countable($softwareLicenceHistory) ? count($softwareLicenceHistory) : 0}})

@include('software-license.license.license-history')
@else

User Not Found

@endif @stop @section('help-links') @include('help.help-links',['helpLink'=>config('help-links.help_links.users'),'helpTitle'=>config('help-links.help_titles.users')]) @endsection @section('after_scripts') @include('reports.scripts.common') @include('reports.scripts.datatable') @include('users.scripts.filter') @endsection