Class: {{ $section['class'] }}
Working Days: {{ $section['totalWorkingDays'] }}
| Student |
@foreach($monthlyHeaders as $index => $month)
@endforeach
@foreach($monthlyHeaders as $month)
| P |
A |
N |
@endforeach
@foreach($section['students'] as $record)
@php
$totalP = 0;
$totalA = 0;
$totalN = 0;
@endphp
| {{ $record['student']->name }} |
@foreach($monthlyHeaders as $month)
@php
$p = $record['monthly'][$month]['present'];
$a = $record['monthly'][$month]['absent'];
$n = $record['monthly'][$month]['not_marked'];
$totalP += $p;
$totalA += $a;
$totalN += $n;
@endphp
{{ $p }} |
{{ $a }} |
{{ $n }} |
@endforeach
{{ $totalP }} |
{{ $totalA }} |
{{ $totalN }} |
@endforeach
| Symbol |
Meaning |
| P |
Present |
| A |
Absent |
| N |
Not Marked |
@endforeach