Name : |
{{ isset($user->profile->first_name) ? title_case($user->profile->first_name) : '' }} |
Position : |
{{ $user->profile->designation->name ?? '' }} |
NRIC No: |
{{ isset($user->profile->unique_identification_number) ? str_repeat('*', strlen($user->profile->unique_identification_number) - 4).substr($user->profile->unique_identification_number, - 4) : '' }} |
Nationality: |
{{ title_case($user->profile->passportCountry()) }} |
Gender: |
{{ isset($user->profile->gender) ? ucfirst($user->profile->gender) : 'Nil' }} |
Date of Birth: |
{{ isset($user->profile->date_of_birth) ? showDate($user->profile->date_of_birth) : 'Nil' }} |
Mobile: |
{{ $user->profile->phone }} |
Age: |
{{ isset($user->profile->date_of_birth) ? getAge($user->profile->date_of_birth) : 'Nil' }} |
@if ($educations->count() > 0)
From |
To |
Name of School / Institution |
Qualification Obtained |
@foreach ($educations as $education)
{{ showDate($education->from_date,true) }} |
{{ (!empty($education->to_date)) ? showDate($education->to_date,true) : 'Present' }} |
{{ $education->institute_name }} |
{{ $education->educationLevel->name }} |
@endforeach
@endif
@if ($experiences->count() > 0)
From |
To |
Employment / Assignment |
Position |
@foreach ($experiences as $experience)
{{ showDate($experience->from_date,true) }} |
{{ (!empty($experience->to_date)) ? showDate($experience->to_date,true) : 'Present' }} |
{{ $experience->company_name }} |
{{ $experience->job_title }} |
@endforeach
@endif
@if ($trainings->count() > 0)