@extends('frontend.layouts.web') @section('content')
Candidate Detail
{{$ApplicanttInfo->full_name}}
{{-- Date of Birth --}}

Date of Birth
{{date('d', strtotime($ApplicanttInfo->date_of_birth))}}/{{date('m', strtotime($ApplicanttInfo->date_of_birth))}}/{{date('Y', strtotime($ApplicanttInfo->date_of_birth))}}

{{-- Current Location --}}

Current Location
{{$ApplicanttInfo->cities_name}}

{{-- Gender --}}

Gender
{{$ApplicanttInfo->gender}}

{{-- Marital Status --}}

Marital Status
{{$ApplicanttInfo->martial_status}}

{{-- Qualification --}}

Qualification
@foreach ($ApplicantEducation as $edu) {{$edu->degree_level}} @break @endforeach

{{-- Save Button --}}
About Me

{{$ApplicanttInfo->remarks}}

General Information
Domicile

{{$ApplicanttInfo->domicile}}

Age Group

{{$ApplicanttInfo->age}}

Home Address

{{$ApplicanttInfo->postel_address}}

Hobbies

{{$ApplicanttInfo->hobbies}}

Contact Number

{{$ApplicanttInfo->mobile}}

Email Address

{{$ApplicanttInfo->email}}

Education

    @foreach($ApplicantEducation as $edu)
  • {{$edu->degree_name}}
  • ({{$edu->session}})

    {{$edu->institute}}
    @endforeach

Work Experience

    @foreach ($ApplicantProfessional as $prof)
  • {{$prof->org_designation}}
  • ({{date('Y', strtotime($prof->start_date))}} - {{date('Y', strtotime($prof->end_date))}})

    {{$prof->org_name}}
    @endforeach

Research Articles

    @foreach ($ApplicantWorkshops as $works)
  • {{$works->res_title}}
  • ({{$works->res_year}})

    {{$works->res_org_name}}
    @endforeach

RECENT JOBS

@foreach($recentjobs as $jobs)

{{$jobs->designation}}

Last Date: {{date('F d, Y', strtotime($jobs->end_date)) }}

@endforeach

QUICK CAREER TIPS

@foreach($CareerTips as $tips)
{{$tips->title}} ...
{{date('M d, Y', strtotime($tips->created_at)) }}
@endforeach
@endsection