@extends('reports.printable') @section('title', 'Employee On Boarding ID : ' . $employee->euid) @section('content')

Employee On Boarding

Personal Information

@if ($employee->other_gender) @endif @if ($employee->other_marital_status) @endif @if ($employee->other_religion) @endif
EUID {{ $employee->euid ?? 'N/A' }}
First Name {{ $employee->first_name ?? 'N/A' }}
Middle Name {{ $employee->middle_name ?? 'N/A' }}
Last Name {{ $employee->last_name ?? 'N/A' }}
Gender {{ $employee->gender ?? 'N/A' }}
Other Gender {{ $employee->other_gender }}
Nationality {{ $nationalities[$employee->nationality] ?? 'N/A' }}
Date of Birth {{ optional($employee->date_of_birth)->format('Y-m-d') ?? 'N/A' }}
Age {{ optional($employee->date_of_birth)->age ?? 'N/A' }} years
Marital Status {{ $employee->marital_status ?? 'N/A' }}
Other Marital Status {{ $employee->other_marital_status }}
Religion {{ $employee->religion ?? 'N/A' }}
Other Religion {{ $employee->other_religion }}
Home Address {{ $employee->home_address ?? 'N/A' }}
Location @if (blank($employee->location)) N/A @else Open in Maps @endif

Identification

@if ($employee->id_images) @endif @if ($employee->passport_images) @endif
NIN {{ $employee->nin ?? 'N/A' }}
NSSF {{ $employee->nssf ?? 'N/A' }}
TIN {{ $employee->tin ?? 'N/A' }}
National ID Expiry {{ optional($employee->national_id_expiry)->format('Y-m-d') ?? 'N/A' }}
Passport Number {{ $employee->passport_no ?? 'N/A' }}
ID Images ID Images
Passport Images Passport Images

Contact Information

Phone Number {{ $employee->phone_number ?? 'N/A' }}
Alternate Phone Number {{ $employee->alternate_phone_number ?? 'N/A' }}
Email {{ $employee->email ?? 'N/A' }}
@if ($employee->emergencyContacts && count($employee->emergencyContacts) > 0)
Emergency Contacts
@foreach ($employee->emergencyContacts as $contact)
Name {{ $contact->contact_name ?? 'N/A' }}
Middle Name {{ $contact->contact_middle_name ?? 'N/A' }}
Last Name {{ $contact->contact_last_name ?? 'N/A' }}
Phone Number {{ $contact->phone_number ?? 'N/A' }}
Relationship {{ $contact->contact_relationship ?? 'N/A' }}
@endforeach @endif

Employment Details

Work Experience Summary {{ $employee->summary_of_work_experience ?? 'N/A' }}
Commencement {{ optional($employee->commencement)->format('Y-m-d') ?? 'N/A' }}
Contract Signing Date {{ optional($employee->contract_signing_date)->format('Y-m-d') ?? 'N/A' }}
Contract Validity {{ optional($employee->contract_validity)->format('Y-m-d') ?? 'N/A' }}
Designation {{ optional($employee->designation)->name ?? 'N/A' }}
Department {{ optional($employee->department)->name ?? 'N/A' }}
Employment Type {{ $employee->employment_type_id ?? 'N/A' }}

Qualifications & Certifications

@if ($employee->skillCertifications && count($employee->skillCertifications) > 0)
Skills
@foreach ($employee->skillCertifications as $skill) {{ $skill->name ?? 'N/A' }} @endforeach
@endif @if ($employee->educationQualifications && count($employee->educationQualifications) > 0)
Education Qualifications
@foreach ($employee->educationQualifications as $edu) {{ $edu->degree_name ?? 'N/A' }} @endforeach
@endif @if ($employee->professionalQualifications && count($employee->professionalQualifications) > 0)
Professional Qualifications
@foreach ($employee->professionalQualifications as $qual) {{ $qual->name ?? 'N/A' }} @endforeach
@endif
@if ($employee->bankAccounts && count($employee->bankAccounts) > 0)

Bank Information

@foreach ($employee->bankAccounts as $account)
Bank Name {{ optional($account->bank)->name ?? 'N/A' }}
Account Number {{ $account->account_number ?? 'N/A' }}
Account Name {{ $account->account_name ?? 'N/A' }}
Branch {{ $account->branch ?? 'N/A' }}
SWIFT Code {{ $account->swift_code ?? 'N/A' }}
@endforeach
@endif @if ($employee->supervisor_id)

Supervisor Information

Name {{ optional($employee->supervisor)->name ?? 'N/A' }}
Email {{ optional($employee->supervisor)->email ?? 'N/A' }}
Phone Number {{ optional($employee->supervisor)->phone_number ?? 'N/A' }}
@endif

Additional Information

@if (blank($employee->documents)) @endif @if ($employee->signature_photo) @endif @if ($employee->national_id_images) @endif
DocumentsN/A
Notes {{ $employee->notes ?? 'N/A' }}
Health Information {{ $employee->health_information ?? 'N/A' }}
Signature Signature
National ID Images National ID
@endsection