@extends('layouts.app') @section('title', 'Attendance Report | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')
{{ auth()->user()->school?->name ?? 'Institution Axis' }}
@endsection @section('breadcrumb') Home / Attendance / Monthly Report @endsection @section('navbar-right') @endsection @section('content')| # | Staff Member | Department | Present | Absent | Late | Half Day | Total Days | Rate |
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
{{ $s->full_name }}
{{ $s->staff_number }}
|
{{ $s->department ?? '—' }} | {{ $s->present_count }} | {{ $s->absent_count }} | {{ $s->late_count }} | {{ $s->half_day_count }} | {{ $total }} |
|
| No active staff or no attendance records for this month. | ||||||||