@extends('layouts.content') @section('body_content') @include('partials.alert') Home Employee {{ $user['name'] }} Employee Details Back Extend Contract @if ($user['image'] !== null) @else @endif {{ $user['name'] }} {{ $user['roles']['name'] }} ID: {{ $user['employee_no'] }} {{ $user['email'] }} {{ $user['phone_number'] }} {{ $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 }} Personal Info Family Data Corporate Info Education & Experience Documents Violation Historical Job Description Change Password @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
{{ $user['roles']['name'] }}