@extends('layouts.app') @section('title', 'Teacher Management') @section('page-title', 'Teacher Management') @section('content')
Manage teacher accounts, qualifications, and class assignments.
Add New Teacher| 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 | |
|
No teachers found. |
||||||