Attendance Sheet Of {{ $className }}: Section {{ $sectionName }}, {{ $monthName }} {{ $year }}
Students
@for ($i = 1; $i <= $daysInMonth; $i++)
{{ $i }}
@endfor
@foreach ($attendanceReport as $studentName => $attendance)
{{ $studentName }}
@for ($i = 1; $i <= $daysInMonth; $i++)
@if ($attendance[$i] === '✓')
P
@elseif ($attendance[$i] === '✗')
x
@else - @endif
@endfor
@endforeach