| # | Student | @if ($this->components->isNotEmpty()) @foreach ($this->components as $component)
{{ $component->name }} ({{ $component->full_marks }}) |
@endforeach
Total | @else
Marks ({{ $this->schedule->full_marks }}) |
@endif
Absent | Remarks |
|---|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $student->first_name }} {{ $student->last_name }}
{{ $student->admission_number }}
|
@if ($this->components->isNotEmpty())
@php $total = 0; @endphp
@foreach ($this->components as $component)
@php
$mark = $row['marks'][$component->id] ?? null;
$total += (float) ($mark?->marks_obtained ?? 0);
@endphp
@if ($this->isLocked || $row['is_absent']) {{ $mark?->marks_obtained ?? '—' }} @else @endif | @endforeach{{ $row['is_absent'] ? '—' : $total }} | @else @php $mark = $row['marks']['single'] ?? null; @endphp@if ($this->isLocked || $row['is_absent']) {{ $mark?->marks_obtained ?? '—' }} @else @endif | @endif
@if ($this->isLocked)
@if ($row['is_absent'])
|
@if ($this->isLocked) {{ $row['remarks'] }} @else @endif |
No enrolled students found for this grade-section in this session.
Choose an exam, grade, and subject to start entering marks.