@extends('admin.layouts.header') @section('dashboard') Dashboard - Admin Page
Top 10 Students out of {{ $attendanceData['checkIns'] }} Attendace Count for Today
@foreach($activeStudentsInLibrary as $student) @endforeach
Full Name Course Total Attendance
{{ $student->fullname }} {{ optional($courses->where('id', $student->course_id)->first())->course }} {{ $student->total_attendance }}
Top 10 Faculty out of {{ $attendanceDataFaculty['checkIns'] }} Attendace Count for Today
@foreach($activeFacultyInLibrary as $faculty) @endforeach
Full Name Course Total Attendance
{{ $faculty->fullname }} {{ optional($courses->where('id', $faculty->course_id)->first())->course }} {{ $faculty->total_attendance }}
Top 10 Graduate Students out of {{ $attendanceDataGraduate['checkIns'] }} Attendace Count for Today
@foreach($activeGradInLibrary as $graduate) @endforeach
Full Name Programs Total Attendance
{{ $graduate->fullname }} {{ optional($graduate_program->where('id', $graduate->graduateProgram_id)->first())->description }} {{ $graduate->total_attendance }}
Student's Attendance Today by Course
Faculty Attendance by Department
Graduate Students Attendance by Program
Students Who Haven't Logged Out Today | Count: {{ $studentsNotLoggedOutCount }}
@foreach($studentsNotLoggedOut as $student) @endforeach
Full Name Course
{{ $student->fullname }} {{ optional($courses->where('id', $student->course_id)->first())->course }}
Faculty Who Haven't Logged Out Today | Count: {{ $facultyNotLoggedOutCount }}
@foreach($facultyNotLoggedOut as $faculty) @endforeach
Full Name Course
{{ $faculty->fullname }} {{ optional($courses->where('id', $faculty->course_id)->first())->course }}
Faculty Who Haven't Logged Out Today | Count: {{ $graduateNotLoggedOutCount }}
@foreach($graduateNotLoggedOut as $graduate) @endforeach
Full Name Course
{{ $graduate->fullname }} {{ optional($graduate_program->where('id', $graduate->graduateProgram_id)->first())->description }}
@endsection