| {{ ($loop->index + 1) }} |
{{$student->student_code}} |
{{$student->name}}
|
{{$student->class_roll}}
|
|
{{getSessionById($student->session,'schoolyear')}}
@if(getSessionById($student->session,'schoolyear') == currentSession()->schoolyear)
@lang('Promoted/New')
@else
@lang('Not Promoted')
@endif
|
{{$student->section->class->name}} -
{{$student->section->section_number}}
|
{!! Form::select('to_session[]', schoolSession(false,true) , $student->session , ['class' => 'form-control sessionChange','id' => 'to_session_'.$loop->index,'data-id' => $loop->index,'placeholder'=>transMsg('Choose')]) !!}
|
|
{!! Form::select('coursegroup_id[]', schoolCourseGroup(1, true),$student->coursegroup_id, ['class' => 'form-control courseChange','placeholder'=>transMsg('Choose'),'id' => 'coursegroup_id_'.$loop->index,'data-id' => $loop->index]) !!}
|
{!! Form::number('class_roll[]', null, ['class' => 'form-control','min'=>0]) !!}
|
@endforeach