@include('header')
@php
$permissions = json_decode(session('permissions'), true);
$userType = session('user_type');
@endphp
Faculty Involvement Information
| # |
Department |
Faculty Name |
Involvement |
Action |
@php $sno = 1; @endphp
@foreach($departments as $department)
@foreach($department->faculties as $faculty)
| {{ $sno++ }} |
{{ $department->department }} |
{{ $faculty->name }} |
@if(!empty($faculty->involvement->involvement))
@foreach($faculty->involvement->involvement as $item)
- {{ $loop->iteration }}. {{ $item }}
@endforeach
@else
-
@endif
|
Edit
|
@endforeach
@endforeach
@include('footer')