@extends('layouts.app') @section('title', __('Grade')) @section('content')
@include('layouts.leftside-menubar')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{csrf_field()}}
@if(count($grades) > 0) @foreach ($grades as $grade)
@lang('Course') - {{$grade->course_config->course->name}}   @lang('Class') - {{$grade->student->section->class->name}}  @lang('Section') - {{$grade->student->section->section_number}}  @lang('Exam') - {{$grade->exam->exam_name}}
@break($loop->first) @endforeach
  • @lang('Select which Grade System you want to use.')
  • @lang('Count Example') : @lang('If you take 3 Quizes and want to count best 2, then Quiz Count is 2.')
  • @lang('Percentage Example') : @lang('Total percentage must be 100%. You can put 100% to a field or distribute it according to your need. Full mark is also needed for Percentage to work') .
  • @lang('Full Mark Example') : @lang('If you take a Class Test where full mark is 15, then Full mark for Class Test is 15') .
@foreach ($grades as $grade)
Warning: Undefined variable $grade in /home/ipsitaltd/public_html/public/latestblcf/resources/views/grade/course-grade.blade.php on line 207

Warning: Attempt to read property "section_id" on null in /home/ipsitaltd/public_html/public/latestblcf/resources/views/grade/course-grade.blade.php on line 207
@break($loop->first) @endforeach
@lang('Select Grade System') @lang('Quiz Count') @lang('Assignment Count') @lang('Class Test Count') @lang('Attendance %') @lang('Assignment ')% @lang('Quiz %') @lang('Class Test %')
@lang('Final Exam %') @lang('Practical %') @lang('Quiz Full Marks') @lang('Assignment Full Marks') @lang('CT Full Marks') @lang('Final Exam Full Marks') @lang('Practical Full Marks') @lang('Attendance Full Marks')
{!! $grades->links() !!}
@else
@lang('No Related Data Found.')
@endif
@if(count($grades) > 0)
{{csrf_field()}} @lang('Give Marks to Students') @foreach($gradesystems as $gs) @foreach ($grades as $grade) @if($grade->grade_system_name == $gs->grade_system_name) @break @endif @endforeach @endforeach
@include('layouts.teacher.grade-form')
@else
@lang('No Related Data Found.')
@endif
@endsection