@extends($activeTemplate.'layouts.frontend') @section('content')
@lang('candidate image')

{{__($candidate->fullname)}}

{{__($candidate->designation)}}
  • {{@$candidate->address->address}}, {{@$candidate->address->country}}
  • @lang('Member since') {{showDateTime($candidate->created_at, 'd M Y')}}

@lang('Candidate Details')

{{__($candidate->details)}}

@lang('Work Experience')

@foreach($candidate->employment as $employment)
{{__($employment->designation)}}
{{showDateTime($employment->start_date, 'd M Y')}} - @if($employment->currently_work == 1) @lang('Continue') @else {{showDateTime($employment->end_date, 'd M Y')}} @endif
{{__($employment->company_name)}}.

{{$employment->responsibilities}}

@endforeach

@lang('Education History')

@foreach($candidate->education as $education)
{{$education->levelOfEducation->name}}
{{$education->passing_year}}
{{$education->degree->name}}

{{$education->institute}}

@endforeach

@lang('Profile Overview')

  • @lang('Email') {{__($candidate->email)}}
  • @lang('Phone') {{__($candidate->mobile)}}
  • @lang('Date Of Birth') {{showDateTime($candidate->birth_date, 'd M Y')}}
  • @lang('Age') {{Carbon\Carbon::parse($candidate->birth_date)->age}} @lang('Years')
  • @lang('National Id') {{$candidate->national_id}}
  • @lang('Gender') @if($candidate->gender == 1) @lang('Male') @elseif($candidate->gender == 2) @lang('Female') @endif
  • @lang('Married Status') @if($candidate->married == 1) @lang('Devorced ') @elseif($candidate->married == 2) @lang('Married ') @elseif($candidate->married == 3) @lang('Separated ') @elseif($candidate->married == 4) @lang('Single') @endif
  • @lang('Skill') @foreach($candidate->skill as $value) @php $skill = App\Models\JobSkill::findOrFail($value); @endphp {{$skill->name}}, @endforeach
  • @lang('Languages') @foreach($candidate->language as $value) {{$value}}, @endforeach

@lang('Contact with '){{$candidate->fullname}}

@csrf
@endsection