{!! Form::open(['method' => 'post','autocomplete'=>'off']) !!}
{!! Form::close() !!}
@if (isset($students) && $students->count())
{!! Form::label('section', trans('Section'), ['class' => 'control-label']) !!}
{!! Form::select('section',$pluckSection ?? array(), $section ?? null, array('id' => 'sections', 'class' => 'select2 form-control','required','placeholder' =>trans('Choose'))) !!}
@error('section')
{{ $message }}
@enderror
{!! Form::label('exam', trans('Exam'), ['class' => 'control-label']) !!}
{!! Form::select('exam', $pluckExam ?? array() , $exam_id?? null , ['class' => 'select2 form-control','required','placeholder'=>trans('Choose')]) !!}
@error('exam')
{{ $message }}
@enderror
@lang('Print')
@foreach($students as $student)
@endforeach
@else
{{school('name')}}
{{school('address')}}
{{$exam->exam_name}}
| @lang('Student Id') : | {{$student->student_code}} | |
| @lang('Name') : | {{$student->name}} | |
| @lang('Class') : | {{$student->section->class->name}} | |
| @lang('Section') : | {{$student->section->section_number}} | |
| @lang('Group') : | {{$student->section->class->group}} | |
| @lang('Session') : | {{getSessionById($student->session,'schoolyear')}} | |
@lang('No Related Data Found.')
@endif