{{$user->name}}

Email: {{$user->email}}
Phone: {{$user->phone}}

Basic information


Age: {{$user->getAge()}}

Gender: {{$user->getGender('gender')}}

Marital Status: {{$user->getMaritalStatus('marital_status')}}

Nationality: {{$user->getNationality('nationality')}}

Details


Industry: {{$user->getIndustry('industry')}}

Functional Area: {{$user->getFunctionalArea('functional_area')}}

Career Level: {{$user->getCareerLevel('career_level')}}

Experience: {{$user->getJobExperience('job_experience')}}

Country: {{$user->getCountry('country')}}

State: {{$user->getState('state')}}

City: {{$user->getCity('city')}}

Education


@foreach ($user->profileEducation as $profileEducation)

{{$profileEducation->degree_title or ''}} ({{$profileEducation->date_completion or ''}})


Institution: {{$profileEducation->institution or ''}}

Country: {{$profileEducation->getCountry('country')}}

State: {{$profileEducation->getState('state')}}

City: {{$profileEducation->getCity('city')}}

Degree Level: {{$profileEducation->getDegreeLevel('degree_level')}}

Degree Type: {{$profileEducation->getDegreeType('degree_type')}}

Degree Result: {{$profileEducation->degree_result or ''}} ({{$profileEducation->getResultType('result_type')}})

@endforeach

Experiences


@foreach ($user->profileExperience as $profileExperience)

{{$profileExperience->title or ''}} ( {{date('Y-m-d', strtotime($profileExperience->date_start))}} - @if ($profileExperience->date_end) {{date('Y-m-d', strtotime($profileExperience->date_end))}} @else Present @endif )


Currently Working: @if ($profileExperience->is_currently_working) Yes @else No @endif

Country: {{$profileExperience->getCountry('country')}}

State: {{$profileExperience->getState('state')}}

City: {{$profileExperience->getCity('city')}}

Description

{{$profileExperience->description}}

@endforeach

Projects


@foreach ($user->profileProjects as $profileProject)

{{$profileProject->name or ''}} ( {{date('Y-m-d', strtotime($profileProject->date_start))}} - @if ($profileProject->date_end) {{date('Y-m-d', strtotime($profileProject->date_end))}} @else Present @endif )


Currently Ongoing: @if ($profileProject->is_on_going) Yes @else No @endif

URL:

Description

{{$profileProject->description}}

@endforeach

Skills


    @foreach ($user->profileSkills as $profileSkill)
  • {{$profileSkill->getJobSkill('job_skill')}} ({{$profileSkill->getJobExperience('job_experience')}})
  • @endforeach

Languages


    @foreach ($user->profileLanguages as $profileLanguage)
  • {{$profileLanguage->getLanguage('lang')}} ({{$profileLanguage->getLanguageLevel('language_level')}})
  • @endforeach