@extends('Frontend.layouts.master') @push('js') @endpush @section('header') @show @section('web') @if(Auth::user())
{{ __('forms.view_page_as_backend_manager') }} ({{ Auth::user()->name }})
@endif @include('Frontend.pages.resumes.breadcrumbs')
@if($candidate->getFirstMediaUrl('candidate_icon')) @else @endif

{{$candidate->fname}} {{$candidate->lname}}

{{$resume->job_title }}

{{$candidate->username}}

@if($candidate->phone)

@if($candidate->phoneCode_id) (+{{$candidate->phoneCode->country_code}}) {{ $candidate->phone }} @endif

@endif @if($candidate->mobile)

@if($candidate->mobileCode_id) (+{{$candidate->mobileCode->country_code}}) {{$candidate->mobile}} @endif

@endif @if($candidate->country)

@if($candidate->simple_province) {{$candidate->simple_province}}, @endif {{$candidate->country?->getTranslations($language_id, "title")}}

@endif @if($resume->resumeSkills)
@foreach ($resume->resumeSkills as $resumeSkill) @if ($resumeSkill->skill->status == 1) {{$resumeSkill->skill->code }} @endif @endforeach
@endif
@if($resume->getFirstMediaUrl('candidate_file')) Download CV @endif
    @if($candidate->date_of_birth)
  • {{__('frontend.date_of_birth')}}

    {{ \Carbon\Carbon::parse($candidate->date_of_birth)->format('d/m/Y') }}
  • @endif @if($resume->categories)
  • {{__('frontend.categories')}}

    @foreach ($resume->categories as $i => $jc) {{ $jc->getTranslations($language_id, "title") }} @if ($i + 1 < $resume->categories->count()) {{ ',' }} @endif @endforeach
  • @endif @if($resume->yearsOfExperience)
  • {{__('frontend.experience')}}

    {{$resume->yearsOfExperience->title}}
  • @endif

{{__('frontend.about_candidate')}}

{!! $resume->content !!}

@if($candidate->country())

{{__('frontend.address')}}

@if($candidate->address) {{$candidate->address}}, @endif @if($candidate->province) {{$candidate->province->getTranslations($language_id, "title")}}, @endif {{$candidate->country?->getTranslations($language_id, "title")}}

@endif

{{__('frontend.education')}}

@foreach ($resume->candidateEducations as $education) @php $endDate = ""; @endphp @if($education->status == 1) @if($education->in_process) @php $endDate = __('frontend.present'); @endphp @else @if($education->end_date) @php $endDate = \Carbon\Carbon::parse($education->end_date)->format('Y'); @endphp @endif @endif @endif

{{$education->resumeDegree?->getTranslations($language_id, "title")}}

{{\Carbon\Carbon::parse($education->start_date)->format('Y')}} @if($endDate) - {{$endDate}} @endif {{ $education->major?->getTranslations($language_id, "title")}} {{ $education->university?->getTranslations($language_id, "title")}}
@endforeach

{{__('frontend.work_experience')}}

@foreach ($resume->candidateExperiences as $experience) @if($experience->status == 1) @if($experience->in_process == 1) @php $endDate = __('frontend.present'); @endphp @else @if($experience->end_date) @php $endDate = \Carbon\Carbon::parse($experience->end_date)->format('Y'); @endphp @endif @endif @endif

{{$experience->job_title }} {{$experience->name}}

{{\Carbon\Carbon::parse($experience->start_date)->format('Y')}} @if($endDate) - {{$endDate}} @endif

{{$experience->job_description}}

@endforeach
@endsection @section('seo_title') -{{$candidate->fname}} {{$candidate->lname}} @endsection