@extends('company.layouts.main') @section('content')

Show Job Application

Applicant Basic Details

First Name : {{ $studentBasic->first_name ? $studentBasic->first_name : '' }}
Last Name : {{ $studentBasic->last_name ? $studentBasic->last_name : '' }}
Email : {{ $studentBasic->email ? $studentBasic->email : '' }}
Date of Birth : {{ $studentBasic->dob ? $studentBasic->dob : '' }}
Gender : {{ $studentBasic->gender ? $studentBasic->gender : '' }}
Organisation : {{ $studentBasic->organisation ? $studentBasic->organisation : '' }}
City : {{ $studentBasic->city ? $studentBasic->city : '' }}
State : {{ $studentBasic->state ? $studentBasic->state : '' }}
Country : {{ $studentBasic->country ? $studentBasic->country : '' }}
Physically Disabled : {{ $studentBasic->diff_abled == 1 ? 'Yes' : 'No' }}
Permanent Address : {{ $studentBasic->p_address ? $studentBasic->p_address : '' }}
Home Town : {{ $studentBasic->home_town ? $studentBasic->home_town : '' }}
Home Town Pin : {{ $studentBasic->home_town_pin ? $studentBasic->home_town_pin : '' }}
LinkedIn : LinkedIn
Facebook : Facebook
Twitter : Twitter
Description : {{ $studentBasic->description ? $studentBasic->description : '' }}
CV Last Updated : {{ $studentBasic->cv_last_updated ? $studentBasic->cv_last_updated : '' }}

Work Experience

@if($studentExperiences) @foreach($studentExperiences as $studentEx)
Current Employment : {{ $studentEx->current_employment ? $studentEx->current_employment : '' }}
Employee Type : {{ $studentEx->employetype_name ? $studentEx->employetype_name : '' }}
Designation : {{ $studentEx->designation_title ? $studentEx->designation_title : '' }}
Total Experience In Years : {{ $studentEx->total_experience_years ? $studentEx->total_experience_years : '' }}
Total Experience In Months : {{ $studentEx->total_experience_months ? $studentEx->total_experience_months : '' }}
Organisation : {{ $studentEx->organization ? $studentEx->organization : '' }}
Start Date : {{ $studentEx->start_date ? $studentEx->start_date : '' }}
End Date : {{ $studentEx->end_date ? $studentEx->end_date : '' }}
Location : {{ $studentEx->location ? $studentEx->location : '' }}
Description : {{ $studentEx->description ? $studentEx->description : '' }}
@endforeach @endif

Educations

@if($studentQualifications) @foreach($studentQualifications as $studentQuali)
Qualification : {{ $studentQuali->qualification ? $studentQuali->qualification : '' }}
Degree Type : {{ $studentQuali->degree_type ? $studentQuali->degree_type : '' }}
Start Date : {{ $studentQuali->start_date ? $studentQuali->start_date : '' }}
End Date : {{ $studentQuali->end_date ? $studentQuali->end_date : '' }}
Location : {{ $studentQuali->location ? $studentQuali->location : '' }}
Description : {{ $studentQuali->description ? $studentQuali->description : '' }}
@endforeach @endif

Skills

@if($studentSkills) @foreach($studentSkills as $studentSki) {{$studentSki->skill_name}} @endforeach @endif

Resume

Resume : @if($studentBasic->cv) {{$studentBasic->first_name}} {{$studentBasic->last_name}} @else

Resume not found

@endif

Certificates

@if($studentCertificates) @foreach($studentCertificates as $studentCer)

{{ $studentCer->title ? $studentCer->title : '' }}

{{ $studentCer->issuing_organization ? $studentCer->issuing_organization : '' }}
{{ $studentCer->start_date ? $studentCer->start_date : '' }}
{{ $studentCer->end_date ? $studentCer->end_date : '' }}
Download Certificate : Blake Howe
@endforeach @endif
@endsection