NICMAR University, Pune
Position: {{ $data['position'] ?? '' }}
Name: {{ $data['name'] }}
Email: {{ $data['email'] }}
Mobile: {{ $data['mobile'] }}
Gender: {{ $data['gender'] }}
Date of Birth: {{ $data['dob'] }}
@if(!empty($data['photo']) && file_exists($data['photo']))
@endif
@if(!empty($data['education']))
Education Detail
@foreach($data['education'] as $edu) @if(!empty($edu['subject']) || !empty($edu['specialization'])) @endif @endforeach
Education Level Board / University Institute / School / College Marks CGPA Year
{{ $edu['level'] }} {{ $edu['board'] }} {{ $edu['institute'] }} {{ $edu['marks'] }} {{ $edu['cgpa'] }} {{ $edu['year'] }}
Subjects / Specialization: {{ collect([$edu['subject'], $edu['specialization']])->filter()->implode(', ') }}
@endif @if(!empty($data['experience']['list']))
Work Experience (Total: {{ $data['experience']['total'] }})
@foreach($data['experience']['list'] as $exp) @endforeach
# Organization Designation From To Duration
{{ $loop->iteration }} {{ $exp['organization'] }} {{ $exp['post'] }} {{ $exp['from'] }} {{ $exp['to'] }} {{ $exp['duration'] }}
@endif @if(!empty($data['publications']))
Research Publication
@foreach($data['publications'] as $pub) @endforeach
# Title Journal Year
{{ $loop->iteration }} {{ $pub['title'] }} {{ $pub['journal'] }} {{ $pub['year'] }}
@endif @if(!empty($data['books']))
Published Books / Chapters
@foreach($data['books'] as $book) @endforeach
# Book Title Publisher Institution
{{ $loop->iteration }} {{ $book['title'] }} {{ $book['publisher'] }} {{ $book['institution'] }}
@endif @if(!empty($data['administrative_experience']))
Administrative Experience (Total: {{ $data['administrative_experience']['total_experience'] }})
@foreach($data['administrative_experience']['list'] as $adm) @endforeach
# Post Institution From To Duration
{{ $loop->iteration }} {{ $adm['post'] }} {{ $adm['institution'] }} {{ $adm['from'] }} {{ $adm['to'] }} {{ $adm['duration'] }}
@endif @if(!empty($data['major_research']))
Major Research
@foreach($data['major_research'] as $mr) @endforeach
# Project Title Value Agency From To Duration
{{ $loop->iteration }} {{ $mr['project_title'] }} {{ $mr['project_value'] }} {{ $mr['granting_agency'] }} {{ $mr['from'] }} {{ $mr['to'] }} {{ $mr['duration'] }}
@endif @if(!empty($data['international_experience']))
International Experience
@foreach($data['international_experience'] as $exp) @endforeach
# Organization / Body Experience
{{ $loop->iteration }} {{ $exp['body'] }} {{ $exp['experience'] }}
@endif @if(!empty($data['leadership_experience']))
Leadership Experience
@foreach($data['leadership_experience'] as $exp) @endforeach
# Brief Description
{{ $loop->iteration }} {{ $exp['description'] }}
@endif @if(!empty($data['statutory_authorities']))
Statutory Authorities
@foreach($data['statutory_authorities'] as $s) @endforeach
# Institution Statutory Forum From To
{{ $loop->iteration }} {{ $s['institution'] }} {{ $s['forum'] }} {{ $s['from'] }} {{ $s['to'] }}
@endif @if(!empty($data['demonstrable_experience']))
Quality Assurance Experience
@foreach($data['demonstrable_experience'] as $d) @endforeach
# Area Institution From To Achievements
{{ $loop->iteration }} {{ $d['area'] }} {{ $d['institution'] }} {{ $d['from'] }} {{ $d['to'] }} {{ $d['achievements'] }}
@endif @if(!empty($data['guiding_experience']))
PhD Student Guided
@foreach($data['guiding_experience'] as $g) @endforeach
# Guide No Co-Guide No
{{ $loop->iteration }} {{ $g['guide'] ?? '-' }} {{ $g['co_guide'] ?? '-' }}
@endif @if(!empty($data['youth_development_experience']))
Youth Development Experience
@foreach($data['youth_development_experience'] as $y) @endforeach
# Activity Institution Achievements From To Duration
{{ $loop->iteration }} {{ $y['activity'] }} {{ $y['institution'] }} {{ $y['achievements'] }} {{ $y['from'] }} {{ $y['to'] }} {{ $y['duration'] }}
@endif @if(!empty($data['reference1']) || !empty($data['reference2']) || !empty($data['reference3']))
References
```
Reference 1 Reference 2 Reference 3
{{ $data['reference1'] ?? '' }} {{ $data['reference2'] ?? '' }} {{ $data['reference3'] ?? '' }}
```
@endif