@extends('layouts.app') @section('title', __('Course Students')) @section('content')
@include('layouts.leftside-menubar')
{{--

Only this part will be printed when the button is clicked.

--}} @if(count($students) > 0)
@foreach ($students as $student) @endforeach
@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')
@else
@lang('No Related Data Found.')
@endif
@endsection @push('script') @endpush