@php $data = []; $data['title'] = "Dashboard"; @endphp @include('teacher.components.header_link', $data)
@include('teacher.components.menu')
@include('teacher.components.navbar', $data)
{{-- ✅ TEACHER PROFILE CARD --}} @php use App\Models\Faculty; use App\Models\Department; $faculty = Faculty::with('department12')->find(session('teacher_id')); @endphp @if($faculty)
Faculty Profile
@if($faculty->image) Profile Image @else Default Profile @endif
{{ $faculty->name }}

{{ $faculty->designation }}

  • Email: {{ $faculty->email }}
  • Mobile: {{ $faculty->mobile_no }}
  • Qualification: {{ $faculty->highest_qualification }}
  • Department: {{ $faculty->department->name ?? 'N/A' }}
Teachers

Users

Teachers

Users

Teachers

Users

@endif {{-- 📦 Existing content below --}}
@include('teacher.components.footer')
@include('teacher.components.footer_link')