@include('header')
@php
$permissions = json_decode(session('permissions'), true);
$userType = session('user_type');
@endphp
| # |
Department |
Designation |
Faculty Name |
Qualification |
Email |
Phone |
Image |
Action |
@php $sno = 1; @endphp
@foreach($departments as $dept)
@foreach($dept->faculties as $faculty)
| {{ $sno++ }} |
{{ $dept->department }} |
{{ $faculty->designation }} |
{{ $faculty->name }} |
{{ $faculty->qualification }} |
{{ $faculty->email }} |
{{ $faculty->phone }} |
@if($faculty->image)
@else
No Image
@endif
|
|
@endforeach
@endforeach
@include('footer')