| CAREER
SUMMARY |
}}) |
|
|
|
{{$resume->career_summary}} |
|
EDUCATION |
|
|
@foreach($education as $qualification)
@if($qualification->completion_date != null)
|
01 Jan 1970
|
@endif
@php($quaCountry = \App\Country::find(@$qualification->countryId))
|
Programme :
Specialization :
Institution :
Country :
|
@endforeach
|
EXPERIENCE |
|
|
|
{{$currCom->position_title}} {{$curJobCat->category}} at {{$currCom->company_name}}
|
|
{{gmdate('d M Y', strtotime($currCom->employed_since))}} - Present
|
@php($curJobIndustry = \App\JobIndustries::find(@$currCom->job_industryId))
|
Inustry: {{@$curJobIndustry->industry}} |
|
Job Category: {{@$curJobCat->category}}
|
|
Job Sepciality: {{@$currCom->job_specialization}} |
|
Job Position: {{@$currCom->position_level}} |
|
Job Location: {{@$curCountry->name}}/{{@$curState->name}}/{{@$curCity->name}} |
|
Current Salary:{{@$currCom->salary}}{{@$currCom->salary_timeFormat}} |
|
Responsibilities
|
|
|
|
Projects Undertaken
|
|
|
|
Achievements
|
|
|
@php($prevCom = json_decode($resume->previous_companies_experiences))
@foreach($prevCom as $prev)
@php($prevJobCat = \App\JobCategory::find(@$prev->job_categoryId))
@php($prevCountry = \App\Country::find(@$prev->countryId))
@php($prevState = \App\State::find(@$prev->stateId))
@php($prevCity = \App\City::find(@$prev->cityId))
@php($prevCountry = \App\Country::find(@$prev->countryId))
@php($prevJobIndustry = \App\JobIndustries::find(@$prev->job_industryId))
|
{{$prev->position_title}} {{$prevJobCat->category}} at {{$prev->company_name}}
|
|
{{gmdate('d M Y', strtotime(@$prev->employed_since))}} - {{gmdate('d M Y', strtotime(@$prev->employed_till))}}
|
|
Inustry: {{$prevJobIndustry->industry}} |
|
Job Category: {{$prevJobCat->category}}
|
|
Job Sepciality: {{$prev->job_specialization}} |
|
Job Position: {{$prev->position_level}} |
|
Job Location: {{$prevCountry->name}}/{{$prevState->name}}/{{$prevCity->name}} |
|
Salary:{{$prev->salary}}{{$prev->salary_timeFormat}} |
|
Responsibilities
|
|
|
|
Projects Undertaken
|
|
|
|
Achievements
|
|
|
@endforeach
@if(is_array($cert))
|
CERTIFICATION |
|
|
@foreach($cert as $certificate)
|
{{$certificate->certification_name}} from {{$certificate->awarding_body}}
@php($cerCountry = \App\Country::find(@$certificate->countryId))
{{@$cerCountry->name}}
Completed On: {{gmdate('d M Y', strtotime($certificate->completion_date))}}
|
@endforeach
@endif
|
SKILLs |
|
|
|
@php($skills = explode('_', $resume->skills_ids))
@php($sk = '')
@foreach($skills as $skill)
@php($ski = \App\JobSkills::find($skill))
@php($sk = $sk.$ski->skill.',')
@endforeach
{{substr($sk, 0, -1)}} |
|
LANGUAGES |
|
|
|
{{$resume->languages}} |
|
SALARY & NOTICE PERIOD |
|
|
|
@php($expCurrency = \App\Currency::find(@$resume->expected_salary_currencyId))
Expected salary: {{@$expCurrency->currency}} {{$resume->expected_salary}} {{$resume->exp_salary_freq}}
|
|
@php($currCurrency = \App\Currency::find(@$currCom->currencyId))
Current salary: {{$currCurrency->currency}} {{@$currCom->salary}}{{$currCom->salary_timeFormat}}
|
|
Notice period: {{$currCom->notice_period}} Week(s)
|