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

Applicant Profile


Back

{{ $studentBasic->username ? $studentBasic->username : '' }}

Profile last updated - {{ $studentBasic->cv_last_updated ? $studentBasic->cv_last_updated : '' }}

{{ $studentBasic->city ? $studentBasic->city : '' }}
{{ $exists ? 'Experienced' : 'Fresher' }}
@if($studentQualifications) @foreach($studentQualifications as $studentQuali) @endforeach @endif
Qualification Degree Type Degree Start Date End Date Percentage CGPA College University Location
{{ $studentQuali->qualification ? $studentQuali->qualification : '' }} {{ $studentQuali->degree_type ? $studentQuali->degree_type : '' }} Msc. CS {{ $studentQuali->start_date ? $studentQuali->start_date : '' }} {{ $studentQuali->end_date ? $studentQuali->end_date : '' }} {{ $studentQuali->percentage ? $studentQuali->percentage : '' }} {{ $studentQuali->university ? $studentQuali->university : '' }} {{ $studentQuali->location ? $studentQuali->location : '' }}
@if($studentExperiences) @foreach($studentExperiences as $studentEx) @endforeach @endif
Current Employment Designation Employment Type Sector Company Name Start Date End Date Location Remote
{{ $studentEx ->current_employment == 1 ? 'yes' : 'no';}} {{ $studentEx->designation_title ? $studentEx->designation_title : '' }} {{ $studentEx->employetype_name ? $studentEx->employetype_name : '' }} {{ $studentEx->department_name ? $studentEx->department_name : '' }} {{ $studentEx->organization ? $studentEx->organization : '' }} {{ $studentEx->start_date ? $studentEx->start_date : '' }} {{ $studentEx->end_date ? $studentEx->end_date : '' }} {{ $studentEx->location ? $studentEx->location : '' }} @if($studentEx->remote == 1) @else

NO

@endif
@if($studentSkills) @foreach($studentSkills as $studentSki) {{$studentSki->skill_name}} @endforeach @endif
@if($studentCertificates) @foreach($studentCertificates as $studentCer) @endforeach @endif
Title of Certificate Issuing Organization Start Date End Date Certificate
{{ $studentCer->title ? $studentCer->title : '' }} {{ $studentCer->issuing_organization ? $studentCer->issuing_organization : '' }} {{ $studentCer->start_date ? $studentCer->start_date : '' }} {{ $studentCer->end_date ? $studentCer->end_date : '' }} Download
@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