@extends('layouts.master') @section('title', 'Attendance') @section('content')
@forelse ($records->attendance 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