@extends('reports.printable')
@section('title', 'Employee On Boarding ID : ' . $employee->euid)
@section('content')
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
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)