- Full Name:
- {{ $employee->first_name }} {{ $employee->last_name }}
- Email:
- {{ $employee->email }}
- Phone:
- {{ $employee->phone ?? 'N/A' }}
- Gender:
- {{ ucfirst($employee->gender) }}
- Date of Birth:
- {{ $employee->date_of_birth ? $employee->date_of_birth->format('M d, Y') : 'N/A' }}
- Address:
- {{ $employee->address ?? 'N/A' }}