@extends('admin.layout.app') @section('heading', 'Candidate Detail') @section('button')
Back to Previous
@endsection @section('main_content')
Basic Information
Photo
Name {{ $candidate_single->name }}
Profession {{ $candidate_single->designation }}
Username {{ $candidate_single->username }}
Email {{ $candidate_single->email }}
Phone {{ $candidate_single->phone }}
Country {{ $candidate_single->country }}
Address {{ $candidate_single->address }}
State {{ $candidate_single->state }}
City {{ $candidate_single->city }}
Zip Code {{ $candidate_single->zip_code }}
Gender {{ $candidate_single->gender }}
Marital Status {{ $candidate_single->marital_status }}
Date of Birth {{ $candidate_single->date_of_birth }}
@if($candidate_educations->count())
Education
@foreach($candidate_educations as $item) @endforeach
SL Education Level Institute Degree Passing Year
{{ $loop->iteration }} {{ $item->level }} {{ $item->institute }} {{ $item->degree }} {{ $item->passing_year }}
@endif @if($candidate_skills->count())
Skills
@foreach($candidate_skills as $item) @endforeach
SL Skill Name
{{ $loop->iteration }} {{ $item->name }}
@endif @if($candidate_experiences->count())
Experience
@foreach($candidate_experiences as $item) @endforeach
SL Company Designation Start Date End Date
{{ $loop->iteration }} {{ $item->company }} {{ $item->designation }} {{ $item->start_date }} {{ $item->end_date }}
@endif @if($candidate_awards->count())
Awards
@foreach($candidate_awards as $item) @endforeach
SL Title Description Date
{{ $loop->iteration }} {{ $item->title }} {{ $item->description }} {{ $item->date }}
@endif @if($candidate_resumes->count())
Resume
@foreach($candidate_resumes as $item) @endforeach
SL Name File
{{ $loop->iteration }} {{ $item->name }} {{ $item->file }}
@endif
@endsection