{{ trans('cv_builder.profile') }}
|
|
{{ $userDetails->profiles->cv_profile_bio }}
|
{{ trans('cv_builder.skillsandachievements') }}
|
|
@foreach($userDetails->skills as $skill)
{{ $skill->skill }}
@if(count($skill->detail) > 0)
@foreach ($skill->detail as $detail)
- {{ $detail->detail }}
@endforeach
@endif
|
@endforeach
{{ trans('cv_builder.careersummary') }}
|
|
@if(count($userDetails->experiences) > 0)
@foreach($userDetails->experiences as $detail)
{{ $detail->positiontitle }}, {{ $detail->commancompanies->name }}, {{ $detail->commancompanies->country->name }}
|
|
{{ date('M Y', strtotime($detail->start_date)) }} - {{ ($detail->is_current == 1) ? 'Present' : date('M Y', strtotime($detail->end_date)) }}
|
@endforeach
@endif
|
@if(count($userDetails->communities) > 0)
{{ trans('cv_builder.memberships') }}
|
|
@foreach($userDetails->communities as $detail)
{{ $detail->name }}
|
@endforeach
@endif
|
@auth
@if(Auth::user()->hasRole('franchise-recruitment') || Auth::user()->hasRole('candidate'))
{{ trans('cv_builder.contact_details') }}
|
|
{{ $userDetails->locations->address1 }}, @if($userDetails->locations->address2){{ $userDetails->locations->address2 }},@endif {{ $userDetails->locations->area_of_residence }},
{{ $userDetails->locations->cities->name }}, @if($userDetails->locations->countries->name != 'Tanzania'){{ $userDetails->locations->states->name }},@endif
{{ $userDetails->locations->countries->name }}
{{ $userDetails->email }}
{{ $userDetails->mobile }}
Marital Status: {{ $userDetails->profiles->maritalstautses->name }}
Age: {{ \Carbon\Carbon::parse($userDetails->profiles->birth_date)->age }} Years
Nationality: {{ $userDetails->profiles->nationalities->name }}
Driving License:
@if(isset($userDetails->liscences) && count($userDetails->liscences) > 0)
@foreach($liscences as $key => $license)
@foreach($userDetails->liscences as $key1 => $detail)
@if($license['id'] == $detail->liscence_id){{ $license['text'] }}@if(count($userDetails->liscences)-1 != $key1), @endif @endif
@endforeach
@endforeach
@endif
|
@endif
@endauth
{{ trans('cv_builder.education') }}
|
|
@if(count($userDetails->educations) > 0)
@foreach($userDetails->educations as $detail)
{{ $detail->title }}, {{ $detail->institutions->name }} - {{ $detail->countries->name }},
@if($userDetails->is_currently_studying == 1) Present @else {{ date('Y', strtotime($detail->end_date)) }} @endif
|
@endforeach
@endif
@if(count($userDetails->certificates) > 0)
{{ trans('cv_builder.certifications') }}
|
|
@foreach($userDetails->certificates as $certificate)
{{ $certificate->name }}, @if($certificate->institutions && $certificate->institutions->name)
{{ $certificate->institutions->name }},@endif
@if(!$certificate->is_ongoing)
{{ date('Y', strtotime($certificate->end_date)) }}
@else
Present
@endif
|
@endforeach
@endif
{{ trans('cv_builder.additionalInformation') }}
|
|
@isset($userDetails->keySkills)
@if(count($userDetails->keySkills) > 0)
{{ trans('cv_builder.technicalSkills') }}: @foreach($userDetails->keySkills as $key => $skill)
{{ ucfirst($skill->name)}}@if(count($userDetails->keySkills)-1 != $key),@endif
@endforeach
@endif
@endisset
@if(count($userDetails->languages) > 0)
{{ trans('cv_builder.languages') }}:
@foreach($userDetails->languages as $key => $language)
{{ ucfirst($language->name) }}@if(count($userDetails->languages)-1 != $key),@endif
@endforeach
@endif
|
@if(isset($userDetails->interests) && count($userDetails->interests) > 0)
{{ trans('cv_builder.interests') }}
|
|
@foreach($userDetails->interests as $key => $interest)
{{ ucfirst($interest->name) }}@if(count($userDetails->interests)-1 != $key),@endif
@endforeach
|
@endif
|
@auth
@if(Auth::user()->hasRole('franchise-recruitment') || Auth::user()->hasRole('candidate'))