@extends('admin.include.main') @section('content')
Manage Roll Number of Class {{$class->class_name}} {{$section->section_name}}
@if($student->isEmpty())

No Student Found in the Class

@else
@csrf
@foreach($student as $st) @endforeach
S.No. Admit no. Name Roll no.
{{$loop->index+1}} {{$st->admit_no}} {{$st->name}}
@endif
@endsection