{{ !empty($candidate->first_name) && !empty($candidate->last_name) ? $candidate->first_name . ' ' . $candidate->last_name : $coordinatorInvitation->fullname }}

{{ __('high_adjustments')}}

  • {{ __('register_for_the_system') }}: {{ $candidate->created_at ? $candidate->created_at->format('d.m.y') : '---' }}
  • {{ __('last_activity_before') }}: {{ $candidate->userData?->lastLogin ? \Carbon\Carbon::parse($candidate->userData->lastLogin->logged_in_at)->diffInDays(now()) : '0'}} {{ __('days') }}

{{ __('loading_summary') }}

{{ __('personal_details') }}

  • {{ __('phone') }} {{ $candidate->phone ?? '-' }}
  • {{ __('location') }} {{ $candidate->city ?? '-' }}
  • {{ __('email') }} {{ $candidate->email ?? '-' }}
  • {{ __('education') }} @if ($candidate->userData->latestEducation && $candidate->userData->latestEducation->count()) @foreach ($candidate->userData->latestEducation as $edu) @if(!empty($edu))
    @if($edu->name !== null && $edu->name !== '') {{ $edu->name }} @if($edu->degree_level !== null && $edu->degree_level !== '') , {{ $edu->degree_level }} @endif @endif @if($edu->school_name !== null && $edu->school_name !== '') ({{ $edu->school_name }}) @endif
    @endif @endforeach @else - @endif

{{ __('skills') }}

@php $skills = $candidate->skills; $visibleCount = 4; $totalCount = $skills->count(); @endphp @if ($totalCount > 0) {{-- First 4 skills --}} @foreach ($skills->take($visibleCount) as $skill) {{ $skill->skill_name }} @endforeach {{-- Hidden skills --}} @if ($totalCount > $visibleCount) {{-- +X more --}} {{ __('more_text') }} +{{ $totalCount - $visibleCount }} @endif @else {{ __('no_skills_added') }} @endif

{{ __('employment_preferences') }}

  • {{ __('location') }} {{ $candidate->userData->jobFilter->city ?? $candidate->city ?? '-' }}
  • {{ __('radius') }} {{ $candidate->userData->jobFilter->radius ?? '0' }} {{ __('km') }}
  • {{ __('scope_of_work') }} @if (!empty($candidate->userData->jobFilter?->job_types)) {{ implode(', ', array_map(fn($type) => __($type), $candidate->userData->jobFilter->job_types)) }} @else {{ __('full_time') }} @endif
  • {{ __('salary_expectations') }} @php $salary = $candidate->userData->jobFilter->salary ?? $candidate->salary ?? null; @endphp {{ $salary ? number_format($salary) . ' ש״ח' : '---' }}
  • {{ __('sector') }} @if (!empty($candidate->userData->jobFilter?->sector_types)) @if (count($candidate->userData->jobFilter?->sector_types) === count($sectorLabelsById)) {{ __('all_sector') }} @else @php $translatedSectors = array_map(function ($sectorType) use ($sectorLabelsById) { $sectorKey = $sectorLabelsById[$sectorType]; return __("filter_sector_{$sectorKey}"); }, $candidate->userData->jobFilter?->sector_types); @endphp {{implode(', ', $translatedSectors) }} @endif @else {{ __('not_selected') }} @endif
  • {{ __('openness_to_professional_retraining') }} {{ $candidate->look_for_edu == 1 ? __('label_yes') : __('label_no') }}

{{ __('occupational_orientation') }}

@if(!empty($hollandData))
@php $images = [ 1 => 'realistic-icon.png', 2 => 'investigative-icon.png', 3 => 'artistic-icon.png', 4 => 'social-icon.png', 5 => 'enterprising-icon.png', 6 => 'conventional-icon.png', ]; $text = [ 1 => __('holland_second_answer_title'), 2 => __('holland_third_answer_title'), 3 => __('holland_first_answer_title'), 4 => __('holland_four_answer_title'), 5 => __('holland_fifth_answer_title'), 6 => __('holland_six_answer_title') ]; @endphp @foreach($hollandData as $key=>$percentage)
{{ $text[$key] }} {{ $percentage }}%
@endforeach

{{ __('favorite_interests') }}

@forelse($selectedIntrests as $intresName) {{ $intresName }} @empty - @endforelse
@else
{{ __('holland_empty_text') }} {{ __('holland_empty_text') }}
@endif