@extends('super-admin.layouts.main') @section('content')
Back  

Applicant Profile

@if($student) Download Resume @endif
@if($student)
@endif

{{$student->first_name}} {{$student->last_name}}

Profile cv last updated - {{$student->cv_last_updated ? $student->cv_last_updated->format('d-m-Y') : ''}}

Profile updated at - {{$student->updated_at ? $student->updated_at->format('d-m-Y') : ''}}

{{ $student->city ? $student->city : '' }}
{{count($student->student_experiences)>0 ? 'Experienced' : 'Fresher'}}
@if($student->student_qualifications) @foreach($student->student_qualifications as $qualification) @endforeach @endif
Qualification Degree Type Degree Start Date End Date Percentage CGPA College University Location
{{$qualification->qualification}} {{$qualification->degree_type}} {{$qualification->education->name}} {{$qualification->start_date}} {{$qualification->end_date}} {{$qualification->percentage}} {{$qualification->university}} {{$qualification->location}}
@if($student->student_experiences) @foreach($student->student_experiences as $experience) @endforeach @endif
Current Employment Designation Employment Type Sector Company Name Start Date End Date Location Remote
{{$experience->current_employment? 'Yes' : 'No'}} {{$experience->designition->title}} Full-Time {{$experience->department->department_name}} {{$experience->organization}} 02-10-2024 02-11-2024 {{$experience->location}} @if($experience->remote) @else

NO

@endif
@if($student->student_skills) @foreach($student->student_skills as $skills) {{$skills->skill->skill_name}} @endforeach @endif
@if($student->student_certificates) @foreach($student->student_certificates as $student_certificates) @endforeach @endif
Title of Certificate Issuing Organization Start Date End Date Certificate
{{$student_certificates->title}} {{$student_certificates->issuing_organization}} {{$student_certificates->start_date}} {{$student_certificates->end_date}} Download

Masterclass

@if($masterclass) @foreach($masterclass as $masterclasses) @endforeach @endif
Master Class Title Payment ID Amount
{{$masterclasses->title}} {{$masterclasses->payment_id}} {{$masterclasses->payment_amount}}

Courses

@if($course) @foreach($course as $courses) @endforeach @endif
Title Payment ID Amount
{{$courses->title}} {{$courses->payment_id}} {{$courses->payment_status}}

VWEP Survey

@if($vwept) @foreach($vwept as $vweps) @endforeach @else @endif
Title Company Name
{{$vweps->title}} {{$vweps->company_name}}
No data available

VWEP

@if(!empty($vwep) && $vwep->isNotEmpty()) @foreach($vwep as $vweps) @endforeach @else @endif
Title Company Name Progress
{{$vweps->title}} {{$vweps->company_name}} 0%
No data available

Jobs

@if($job) @foreach($job as $jobs) @if($jobs->shortlested == 1) @else @endif @endforeach @endif
Job Description Company Name Shortlisted
{{$jobs->title}} {{$jobs->company_name}} Shortlisted Rejected
@endsection @section('script') $(function () { var table = $('#datatable').DataTable({ processing: true, serverSide: true, responsive:true, order:['0','desc'], "columnDefs": [ { "targets": [ 0 ], "visible": false, "searchable": true }, ], "columns": [ { data: 'id' }, { data: 'username' }, { data: 'email' }, {data: 'action', name: 'action', orderable: false, searchable: false}, ] }); }); @endsection