@extends('layouts.app') @section('title', 'Staff Attendance | Institution Axis') @section('sidebar-menu') @include('schooladmin.partials.sidebar') @endsection @section('sidebar-footer')
{{ auth()->user()->school?->name ?? 'Institution Axis' }}
@endsection @section('breadcrumb') Home / Staff / Attendance @endsection @section('navbar-right') @endsection @section('content')| # | Staff Member | Staff No. | Status | Check-In | Check-Out | Notes |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} |
|
{{ $record->staffProfile->staff_number }} | {{ $record->status_label }} | {{ $record->check_in_time ?? '—' }} | {{ $record->check_out_time ?? '—' }} | {{ $record->notes ?? '—' }} |
| No attendance records for this date. Mark now. | ||||||