@extends('layouts.master') @section('title', 'Attendance') @push('css') @endpush @section('content')
@forelse ($records as $record) @empty @endforelse
ID Name History Attendance
{{ $record?->student->reg_id }} {{ $record?->student->name }} Absent: {{ $record?->student?->currentBatch?->total_absent() }} Present: {{ $record?->student?->currentBatch?->total_present() }} Late: {{ $record?->student?->currentBatch?->total_late() }}
No student found.
@endsection @push('js') @endpush