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
| SL |
Education Level |
Institute |
Degree |
Passing Year |
@foreach($candidate_educations as $item)
| {{ $loop->iteration }} |
{{ $item->level }} |
{{ $item->institute }} |
{{ $item->degree }} |
{{ $item->passing_year }} |
@endforeach
@endif
@if($candidate_skills->count())
Skills
| SL |
Skill Name |
@foreach($candidate_skills as $item)
| {{ $loop->iteration }} |
{{ $item->name }} |
@endforeach
@endif
@if($candidate_experiences->count())
Experience
| SL |
Company |
Designation |
Start Date |
End Date |
@foreach($candidate_experiences as $item)
| {{ $loop->iteration }} |
{{ $item->company }} |
{{ $item->designation }} |
{{ $item->start_date }} |
{{ $item->end_date }} |
@endforeach
@endif
@if($candidate_awards->count())
Awards
| SL |
Title |
Description |
Date |
@foreach($candidate_awards as $item)
| {{ $loop->iteration }} |
{{ $item->title }} |
{{ $item->description }} |
{{ $item->date }} |
@endforeach
@endif
@if($candidate_resumes->count())
Resume
| SL |
Name |
File |
@foreach($candidate_resumes as $item)
| {{ $loop->iteration }} |
{{ $item->name }} |
{{ $item->file }} |
@endforeach
@endif