@extends('layouts.teacher.app') @section('content')

Teacher List for {{ $sess->mrsm_name }}

@if($teacherlist->isEmpty())

No teachers found for this school.

@else @foreach ($teacherlist as $teacher) @endforeach
ID Name Registered on Status Action
{{ $teacher->teacher_id }} {{ $teacher->name }} @if($teacher->teacher_id == $sess->teacher_id) (Logged as) @endif {{ $teacher->created_at }} @if ($teacher->status == 1) Active @else Not Active @endif Attendance Record
{{ $teacherlist->links() }} @endif
@endsection