{{--
@else
Only this part will be printed when the button is clicked.
--}} @if(count($students) > 0)| @lang('Sl') | @lang('Student Code') | @lang('Student Name') | @lang('Father Name') | @lang('Mother Name') | @lang('Class Roll') | @lang('Class') | @lang('Status') | @lang('Grade History') |
|---|---|---|---|---|---|---|---|---|
| {{($loop->index+1)}} | {{$student->student_code}} | {{$student->name}} | {{$student->father_name}} | {{$student->mother_name}} | {{$student->class_roll}} | {{$student->section->class->name}} | @if(isset($student->studentInfo['session']) && ($student->studentInfo['session'] == now()->year || $student->studentInfo['session'] > now()->year)) @lang('Promoted/New') @else @lang('Not Promoted') @endif | @lang('View Grade History') @lang('Print Grade History') |
@lang('No Related Data Found.')
@endif