@extends('layouts.app') @section('styles') @endsection @section('content')
@include('include.employer-side-nav')
{{ $candidate->fullname }}

{{ $candidate->designation }}

{{ json_decode($candidate->address)->address }}, {{ json_decode($candidate->address)->state }}

{{ date('d M Y',strtotime($candidate->created_at)) }}

@lang('Candidate Details')

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

@lang('Work Experience')

@foreach($candidate->employment as $employment)
{{__($employment->designation)}}
{{ date('d M Y', strtotime($employment->start_date)) }} - @if($employment->currently_work == 1) @lang('Continue') @else {{date( 'd M Y', strtotime($employment->end_date)) }} @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') {{date('d M Y', strtotime($candidate->birth_date) )}}
  • {{--
  • @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}}

{{-- {{route('contact.with.employer')}} --}} @csrf
@endsection