@extends('layouts.app') @section('content')
@include('layouts.left-menu')

Promote Students

@include('session-messages')

Students must be promoted only once to a new Session. Ususally, Admin will create a New Session once Academic activity ends for the Current Session.

@csrf @isset($students) @foreach ($students as $index => $student) @endforeach @endisset
#ID Card Number First Name Last Name Previous Class Previous Section Promoting to Class Promoting to Section
{{$student->student->first_name}} {{$student->student->last_name}} {{$schoolClass->class_name}} {{$section->section_name}}
@include('layouts.footer')
@endsection