{{ $faculty->name }}
{{ $faculty->designation }} @if($faculty->department) , Department of {{ $faculty->department->department }} @endif
Quick Info
- Employee ID: {{ $faculty->employeeid }}
- DOB: {{Carbon\Carbon::parse($faculty->dob)->format('d-m-Y') }}
- Joining Date: {{ Carbon\Carbon::parse($faculty->date_of_appointment)->format('d-m-Y') }} @if($faculty->email)
- π§ {{ $faculty->email }} @endif @if($faculty->phone)
- π {{ $faculty->phone }} @endif
- π MonβFri, 10:00 AM β 4:00 PM
{{ $faculty->name }}, {{ $faculty->designation }} Department of {{ $faculty->department->department }} at Tagore Government Arts and Science College, Puducherry, has made remarkable contributions in {{ $faculty->department->department }} studies, research, and cultural promotion. With over {{ $faculty->teaching_experience }} years of teaching and research experience, {{ strtolower($faculty->gender) === 'male' ? 'he' : 'she' }} has published widely, delivered lectures at numerous national and international conferences, and received prestigious awards from various literary and cultural organizations.
Academics
@php $academics = $faculty->academics ?? collect(); @endphp @if($academics->isNotEmpty())| # | Qualification | Institution | Year |
|---|---|---|---|
| {{ $index + 1 }} |
{{ $acad->class }} {{ $acad->course ?? '' }} |
{{ $acad->board ?? '-' }} | {{ $acad->year ?? '-' }} |
No academic data available
@endifOther Info
@php $oi = $faculty->otherInfo ?? null; $coursesCount = is_array($oi?->courses_attended) ? count($oi->courses_attended) : 0; $onlineCount = is_array($oi?->online_course) ? count($oi->online_course) : 0; $awardsCount = is_array($oi?->awards_recognitions) ? count($oi->awards_recognitions) : 0; $communityCount = is_array($oi?->community_service) ? count($oi->community_service) : 0; $suggestCount = is_array($oi?->suggestions) ? count($oi->suggestions) : 0; $totalOtherInfo = $coursesCount + $onlineCount + $awardsCount + $communityCount + $suggestCount; @endphp @if($totalOtherInfo > 0)- Courses Attended: {{ $coursesCount }}
- Online Courses: {{ $onlineCount }}
- Awards: {{ $awardsCount }}
- Community Service: {{ $communityCount }}
- Suggestions: {{ $suggestCount }}
No data available in other infos
@endifParticipation
@if(!empty($faculty->participation) && is_array($faculty->participation->participation))-
@foreach($faculty->participation->participation as $item)
- {{ $item }} @endforeach
No participation data available
@endifInvolvement
@if(!empty($faculty->involvement) && is_array($faculty->involvement->involvement))-
@foreach($faculty->involvement->involvement as $item)
- {{ $item }} @endforeach
No involvement data available
@endifNo research data available
@endifPublications
@if(!empty($faculty->publications) && $faculty->publications->publications)-
@foreach($faculty->publications->publications as $p)
- {{ $p }} @endforeach
No publications data available
@endif-
@foreach($faculty->seminars->title_of_program as $i => $title)
- {{ $title }} ({{ $faculty->seminars->organization[$i] ?? 'N/A' }}) @endforeach
No seminars data available
@endif-
@foreach($faculty->projects->projects as $item)
- {{ $item }} @endforeach
No projects data available
@endifOther Details
@if(!empty($detailsList))-
@foreach($detailsList as $detail)
- {{ trim($detail) }} @endforeach
No other details available
@endifCourses Attended
@if(!empty($oi) && is_array($oi->courses_attended) && count($oi->courses_attended) > 0)-
@foreach($oi->courses_attended as $course)
- {{ $course }} @endforeach
No courses attended data available
@endifOnline Courses
@if(!empty($oi) && is_array($oi->online_course) && count($oi->online_course) > 0)-
@foreach($oi->online_course as $course)
- {{ $course }} @endforeach
No online courses data available
@endif