ROLL NUMBER:
{{ $student->rollnum }}
@if(!empty($student->user?->profile_image))

@endif
{{ $student->studentFullName }}
{{ $student->gender }}
@if($student->campus !==1)
Mobile Number:
{{ $student->mobile }}
@endif
DOB
{{ $student->dob }}
@php
$academic = $student?->academicDetail;
@endphp
TECHNICAL SKILLS
@foreach(explode(',', $academic->technical ?? '') as $skill)
- {{ trim($skill) }}
@endforeach
PERMANENT ADDRESS
{{ $student->address }}
City: {{ $student->city }}
State: {{ $student->state }}
Pincode: {{ $student->pincode }}
LANGUAGE
@foreach(explode(',', $student->language ?? '') as $lang)
- {{ trim($lang) }}
@endforeach
@if(!empty($student->hobby))
INTERESTS
@foreach(array_filter(array_map('trim', explode(',', $student->hobby))) as $h)
- {{ $h }}
@endforeach
@endif
@if(!$verification['verified'])
Profile Verification Status
@foreach($verification['sections'] as $section)
@continue($section['verified'])
@if(!empty($section['messages']) && is_array($section['messages']))
@foreach($section['messages'] as $message)
- {{ $message }}
@endforeach
@elseif(!empty($section['message']))
- {{ $section['message'] }}
@endif
@endforeach
@endif
SUMMARY OF QUALIFICATION
| Course / Programme |
Board / University Name |
CGPA/ (%) |
Passing Year |
| {{ $student->studentProgram }} |
{{ $campusName }} |
{{ blank($student?->cgpaRecord?->cgpa) ? 'NA' : $student->cgpaRecord->cgpa }} |
{{ $student?->batchName?->pyear }} |
@foreach($student?->academicDetail?->getCoursesForResume() ?? [] as $course)
| {{ $course['name'] }}
@if(!empty($course['specialization']))
{{ $course['specialization'] }}
@endif
@if(!empty($course['stream']))
{{ $course['stream'] }}
@endif
|
{{ $course['board'] }} |
{{ $course['marks'] }} |
{{ $course['year'] }} |
@endforeach
@if($student->has_experience_filled)
WORK EXPERIENCE ({{ $student->total_experience }})
@foreach($student->experienceList as $exp)
{{ $exp->company }}
|
{{ $exp->from_date }}
-
{{ $exp->to_date }}
|
{{ $exp->experience }}
|
PROFILE:
{{ $exp->profile }}
{!! $exp->responsibilities !!}
@endforeach
@endif
@if($student->hasProjectInternFilled)
INTERNSHIP / PROFESSIONAL TRAINING
(Total Duration:
{{ $student->TotalProjectExperience }} Weeks)
@foreach($student->projectInternList as $projectRec)
{{ $projectRec->organization }}
|
{{ $projectRec->from_date }}
-
{{ $projectRec->to_date }}
|
{{ $projectRec->experience }} Weeks
|
PROFILE:
{{ $projectRec->profile }}
{!! $projectRec->responsibilities !!}
@endforeach
@endif
@if(optional($academic)->publication === 'Yes')
PUBLICATIONS DETAIL
{!! optional($academic)->publication_detail !!}
@endif
@if($student->hasStdCertificationFilled)
CERTIFICATION DETAIL
@foreach($student->studentCertificationList as $certRec)
- {!! $certRec->name !!}
@endforeach
@endif
@if(optional($academic)->achievement === 'Yes')
ACHIEVEMENT DETAIL
{!! optional($academic)->achievement_detail !!}
@endif