@extends('../layout/' . $layout) @section('subhead') Atarud MIS - Manage Exam Marks @endsection @section('subcontent')

Manage Exam Marks

Add
@csrf
@php $count = 0; @endphp @foreach($students as $row) @php $student = App\Models\Student::where('id', $row->student_id) ->where('status', 'active') ->first(); ++$count; if($student == null) continue; $mark = App\Models\ExitExamMark::where('exam_id', $exam->id)-> where('program_id', $exam->program_id)-> where('student_id', $row->student_id)-> first(); @endphp @endforeach
# Student ID Student Name Student Father Name Writing Speaking listinig Reading Home Work FL Mark Obtained (out of {{ $examSetting->total_marks }})
{{ ++$loop->index }} {{ $student->id }} {{ $student->name }} {{ $student->father_name }}
@endsection @section('script') @endsection