@extends('layouts.content') @section('body_content') @include('partials.alert')

Employee Details

@if ($user['image'] !== null) @else {{ $user['name'] }} @endif

{{ $user['name'] }}

{{ $user['roles']['name'] }}

{{ $user['is_out'] == 'On' ? 'Active' : 'Inactive' }}
Joined: {{ \Carbon\Carbon::parse($user['join_date'])->format('d M Y') }}
Division
{{ $user['division']['name'] ?? '-' }}
Department
{{ $user['department']['name'] ?? '-' }}
Employment Type
{{ $user['statusEmployee']['name'] ?? '-' }}
Leave Allowance
{{ $user['leave_allowance'] ?? 0 }}
@include('employee.new_tabs.personals_info_tab') @include('employee.new_tabs.family_data_tab') @include('employee.new_tabs.corporate_info_tab') @include('employee.new_tabs.education_experience_info_tab') @include('employee.new_tabs.documents_info_tab') @include('employee.new_tabs.violation_info_tab') @include('employee.new_tabs.job_desc_info_tab') @include('employee.tabs.employee_change_password')
@include('employee.modals.new.history_modal') @include('employee.modals.new.add_education_or_experience') @include('employee.modals.new.edit_education_or_experience') @include('employee.modals.new.view_document_modal') @include('employee.modals.new.add_document_modal') @push('scripts') {{-- --}} @endpush @endsection