@extends('layouts.app') @section('title', 'Staff Management | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')
{{ auth()->user()->school?->name ?? 'Institution Axis' }}
@endsection @section('breadcrumb') Home / Teachers & Staff @endsection @section('navbar-right') @endsection @section('content')| # | Staff Member | Staff No. | Department | Designation | Phone | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $member->full_name }}
{{ $member->user->email }}
|
{{ $member->staff_number }} | {{ $member->department ?? '—' }} | {{ $member->designation ?? '—' }} | {{ $member->phone ?? '—' }} | @php $statusClass = match($member->status) { 'active' => 'bg-success', 'inactive' => 'bg-secondary', 'suspended' => 'bg-danger', default => 'bg-secondary', }; @endphp {{ ucfirst($member->status) }} | |
| No staff members found. Add one now. | |||||||