@include('header') @php $permissions = json_decode(session('permissions'), true); $userType = session('user_type'); @endphp
Faculty Other Information

Faculty Other Information

@php $sno = 1; @endphp @foreach($departments as $department) @foreach($department->faculties as $faculty) @endforeach @endforeach
# Department Faculty Courses Attended Online Course Awards Community Service Action
{{ $sno++ }} {{ $department->department }} {{ $faculty->name }} @if(!empty($faculty->otherInfo->courses_attended))
    @foreach($faculty->otherInfo->courses_attended as $item)
  1. {{ $loop->iteration }}. {{ $item }}
  2. @endforeach
@else - @endif
@if(!empty($faculty->otherInfo->online_course))
    @foreach($faculty->otherInfo->online_course as $item)
  1. {{ $loop->iteration }}. {{ $item }}
  2. @endforeach
@else - @endif
@if(!empty($faculty->otherInfo->awards_recognitions))
    @foreach($faculty->otherInfo->awards_recognitions as $item)
  1. {{ $loop->iteration }}. {{ $item }}
  2. @endforeach
@else - @endif
@if(!empty($faculty->otherInfo->community_service))
    @foreach($faculty->otherInfo->community_service as $item)
  1. {{ $loop->iteration }}. {{ $item }}
  2. @endforeach
@else - @endif
Edit
@include('footer')