@extends('layouts.app') @section('title', 'Enter Marks') @section('page-title', 'Enter Marks: ' . $exam->name) @section('content')

{{ $exam->subject->name }} | {{ $exam->class_->full_name }} | Total: {{ $exam->total_marks }}

@csrf
@foreach($students as $i => $student) @php $existing = $existingMarks->get($student->id); @endphp @endforeach
# Student Marks (out of {{ $exam->total_marks }}) Absent Remarks
{{ $i+1 }} {{ $student->name }} is_absent ? 'checked' : '' }}>
@endsection