@php Theme::asset()->usePath()->add('css-bar-rating', 'plugins/jquery-bar-rating/themes/css-stars.css'); Theme::asset()->container('footer')->usePath()->add('jquery-bar-rating-js', 'plugins/jquery-bar-rating/jquery.barrating.min.js'); Theme::set('pageTitle', $candidate->name); if ($candidate->getMetaData('cover_image', true)) { $coverImage = RvMedia::getImageUrl($candidate->getMetaData('cover_image', true)); } elseif (theme_option('background_cover_candidate_default')) { $coverImage = RvMedia::getImageUrl(theme_option('background_cover_candidate_default')); } @endphp
{{ $candidate->name }}
{{ $candidate->name }} {{ $candidate->address }}

{!! BaseHelper::clean($candidate->description) !!}

@if(! $candidate->hide_cv && $candidate->resume) @endif

{{ __('About Me') }}

{!! BaseHelper::clean($candidate->bio) !!}
@if($countEducation = $educations->count())

{{ __('Education') }}

@foreach($educations as $education)
{{ $education->specialized ? strtoupper(substr($education->specialized, 0, 1)) : 'E' }}
@if ($education->specialized)
{{ $education->specialized }}
@endif

{{ $education->school }} - ({{ $education->started_at->format('Y') }} - {{ $education->ended_at ? $education->ended_at->format('Y'): __('Now') }})

{!! BaseHelper::clean($education->description) !!}

@if ($countEducation >= 1 && ! $loop->last) @endif
@endforeach
@endif @if($countExperience = $experiences->count())

{{ __('Experience') }}

@foreach( $experiences as $experience)
{{ $experience->position ? strtoupper(substr($experience->position, 0, 1)) : '' }}
@if ($experience->position)
{{ $experience->position }}
@endif

{{ $experience->company }} - ({{ $experience->started_at->format('Y') }} - {{ $experience->ended_at ? $experience->ended_at->format('Y'): __('Now')}})

{!! BaseHelper::clean($experience->description) !!}

@if ($countExperience >= 1 && ! $loop->last) @endif
@endforeach
@endif
@if(JobBoardHelper::isEnabledReview())
$candidate->reviews_count < 1])>
{{ __(":candidate's Reviews", ['candidate' => $candidate->name]) }}
@include(Theme::getThemeNamespace('views.job-board.partials.review-load'), ['reviews' => $candidate->reviews])
@include(Theme::getThemeNamespace('views.job-board.partials.review-form'), [ 'reviewable' => $candidate, 'canReview' => $canReview, ]) @endif
{!! dynamic_sidebar('candidate_sidebar') !!}