@extends('schoolLayout.app') @section('content') @if(session('success')) @endif @if(session('error')) @endif

Add Exam Marks

@csrf
@csrf @if($students) @php $i = 1; @endphp @foreach($students as $student) @php $i++; @endphp @endforeach @else @endif
Sr No Registration No Student Name Father Name Exam Obtained Marks
{{ $i}} {{ $student->reg_no}} {{ $student->student_name}} {{ $student->father_name}} Final Exam with session
No records found
@endsection @section('script') @endsection