@extends('layouts.app') @section('title', 'Teacher Management') @section('page-title', 'Teacher Management') @section('content')

Manage teacher accounts, qualifications, and class assignments.

Add New Teacher
{{-- Filters --}}
Clear
{{-- Table --}}
@forelse($teachers as $teacher) @empty @endforelse
Teacher Employee ID Qualification Specialization Joined Status Actions
{{ $teacher->name }}

{{ $teacher->email }}

@if($teacher->phone)

{{ $teacher->phone }}

@endif
{{ $teacher->teacherProfile?->employee_id ?? '—' }} {{ $teacher->teacherProfile?->qualification ?? '—' }} {{ $teacher->teacherProfile?->specialization ?? '—' }} {{ $teacher->teacherProfile?->joining_date?->format('d M Y') ?? '—' }} @if($teacher->is_active) Active @else Inactive @endif
@csrf @method('PATCH')

No teachers found.

@if($teachers->hasPages())
{{ $teachers->links() }}
@endif
@endsection