@extends('layouts.app') @section('title', __('Grade')) @section('content')
@include('layouts.leftside-menubar')
@lang('Examinations') / @lang('Grades')
@include('components.sectionbar.examination-bar')
@if (count($classes)>0)
@foreach ($classes as $key=>$class) @endforeach
# @lang('Class') @lang('Section') @lang('View Each Student\'s Grade History') @lang('View all Students Marks under this Section')
{{ $key + 1 }} {{$class->name}} @if($class->group)({{$class->group}})@endif @foreach($sections as $section) @if($class->id == $section->class_id && $section->section_number != 'Admission') @endif @endforeach
{{$section->section_number}} @lang('View Each Student\'s Grade History') @lang('View all Students Marks under this Section')
@else
@lang('No Related Data Found.')
@endif {{-- @if(count($classes) > 0)
@include('components.sectionbar.grade-bar')
@foreach($classes as $class)
@foreach($sections as $section) @if($class->id == $section->class_id) @endif @endforeach
@lang('Section Name') @lang('View Each Student\'s Grade History') @lang('View all Students Marks under this Section')
{{$section->section_number}} visibility @lang('View Each Student\'s Grade History') visibility @lang('View all Students Marks under this Section')
@endforeach
@else
@lang('No Related Data Found.')
@endif --}}
@endsection