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

Post: {{$candidate->job->title}}

@lang('candidate image')

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

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

  • Father's Name: {{$candidate->father_name}}
  • Mother's Name: {{$candidate->mother_name}}
  • Present Address: {{$candidate->present_address}}
  • Permanent Address: {{$candidate->permanent_address}}
  • @lang('Applied at: ') {{showDateTime($candidate->created_at, 'd M Y, H:i')}}

@lang('Educational Qualification')

@foreach($candidate->jobApplyEducation as $education)
{{__(@$education->levelOfEducation->name)}}
{{$education->passing_year}}
{{__(@$education->exam_name)}}

{{@$education->institute}} @if($education->board != NULL) - {{@$education->board}} Board @endif

Group/Department: {{@$education->department}}

Passing Year: {{@$education->passing_year}}

Result: {{@$education->result}}

@endforeach

@lang('Work Experience')

@foreach($candidate->jobApplyExperience as $employment)
{{__($employment->designation)}} (Grade: {{__($employment->grade)}})
{{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)}}

@php $startDate = Carbon\Carbon::parse($employment->start_date); $endDate = Carbon\Carbon::parse($employment->end_date); echo 'Duration: '. $startDate->diff($endDate)->format('%y year %m month %d day'); @endphp

@endforeach

@lang('Publication')

@php echo $candidate->publication; @endphp

@lang('Additional Qualification')

@php echo $candidate->additional_qualification; @endphp

@lang('Health related Information')

@php echo $candidate->health_info; @endphp

@lang('Reference')

@php echo $candidate->reference; @endphp

@lang('Profile Overview')

  • @lang('Email') {{$candidate->email}}
  • @lang('Mobile') {{$candidate->mobile}}
  • @lang('Date Of Birth') {{showDateTime($candidate->birth_date, 'd M Y')}}
  • @lang('Age') @php $birthDate = Carbon\Carbon::parse($candidate->birth_date); $today = Carbon\Carbon::now(); echo $birthDate->diff($today)->format('%y year %m month %d day'); @endphp
  • @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_status == 1) @lang('Single') @elseif($candidate->married_status == 2) @lang('Married ') @elseif($candidate->married_status == 3) @lang('Devorced') @elseif($candidate->married_status == 4) @lang('Separated ') @endif
  • @lang('Quota') @if($candidate->quota == 1) @lang('Freedom Fighter') @elseif($candidate->quota == 2) @lang('Other ') @elseif($candidate->quota == 3) @lang('Not Applicable') @endif
  • @lang('Religion') @if($candidate->religion == 1) @lang('Islam') @elseif($candidate->religion == 2) @lang('Hinduism') @elseif($candidate->religion == 3) @lang('Christianity') @elseif($candidate->religion == 4) @lang('Budhism') @endif
@endsection