@include('frontend.header')
{{ $faculty->name }}

{{ $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())
@foreach($academics as $index => $acad) @endforeach
# Qualification Institution Year
{{ $index + 1 }} {{ $acad->class }}
{{ $acad->course ?? '' }}
{{ $acad->board ?? '-' }} {{ $acad->year ?? '-' }}
@else

No academic data available

@endif
Other 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 }}
@else

No data available in other infos

@endif
Participation
@if(!empty($faculty->participation) && is_array($faculty->participation->participation))
    @foreach($faculty->participation->participation as $item)
  1. {{ $item }}
  2. @endforeach
@else

No participation data available

@endif
Involvement
@if(!empty($faculty->involvement) && is_array($faculty->involvement->involvement))
    @foreach($faculty->involvement->involvement as $item)
  1. {{ $item }}
  2. @endforeach
@else

No involvement data available

@endif
@php $research = $faculty->research ?? null; @endphp @if($research)
NUMBER OF YEARS OF RESEARCH EXPERIENCE : {{ $research->research_experience ?? 'N/A' }}
NUMBER OF M.PHIL SCHOLARS GUIDED : {{ $research->mphil_guided ?? 'N/A' }}
NUMBER OF PH.D SCHOLARS GUIDED : {{ $research->phd_guided ?? 'N/A' }}
TOTAL RESEARCH PUBLICATIONS : {{ $research->total_research ?? 'N/A' }}
@else

No research data available

@endif

Publications

@if(!empty($faculty->publications) && $faculty->publications->publications)
@if(is_array($faculty->publications->publications))
    @foreach($faculty->publications->publications as $p)
  • {{ $p }}
  • @endforeach
@else {!! nl2br(e($faculty->publications->publications)) !!} @endif
@else

No publications data available

@endif
@if(!empty($faculty->seminars) && is_array($faculty->seminars->title_of_program))
    @foreach($faculty->seminars->title_of_program as $i => $title)
  1. {{ $title }} ({{ $faculty->seminars->organization[$i] ?? 'N/A' }})
  2. @endforeach
@else

No seminars data available

@endif
@if(!empty($faculty->projects) && is_array($faculty->projects->projects))
    @foreach($faculty->projects->projects as $item)
  1. {{ $item }}
  2. @endforeach
@else

No projects data available

@endif
@php $otherDetails = $faculty->other_projects?->details; $detailsList = $otherDetails ? array_filter(explode("\n", $otherDetails)) : []; @endphp
Other Details
@if(!empty($detailsList))
    @foreach($detailsList as $detail)
  1. {{ trim($detail) }}
  2. @endforeach
@else

No other details available

@endif
Courses Attended
@if(!empty($oi) && is_array($oi->courses_attended) && count($oi->courses_attended) > 0)
    @foreach($oi->courses_attended as $course)
  1. {{ $course }}
  2. @endforeach
@else

No courses attended data available

@endif
Online Courses
@if(!empty($oi) && is_array($oi->online_course) && count($oi->online_course) > 0)
    @foreach($oi->online_course as $course)
  1. {{ $course }}
  2. @endforeach
@else

No online courses data available

@endif
@include('frontend.footer')