@extends('backEnd.master') @section('title') @lang('reports.merit_list_report') @endsection @section('mainContent') @push('css') @endpush

@lang('common.select_criteria')

{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'merit_list_reports', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'search_student']) }}
@if(moduleStatusCheck('University'))
@includeIf('university::common.session_faculty_depart_academic_semester_level', ['required' => ['USN', 'UD', 'UA', 'US', 'USL'],'hide'=> ['USUB'] ])
{{ Form::select('exam_type',[""=>__('exam.select_exam').'*'], null , ['class' => 'primary_select form-control'. ($errors->has('exam_type') ? ' is-invalid' : ''), 'id'=>'select_exam_typ_subject']) }}
loader
@if ($errors->has('exam_type')) {{ @$errors->first('exam_type') }} @endif
@else
@if ($errors->has('exam')) {{ $errors->first('exam') }} @endif
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
@endif
{{ Form::close() }}
@if(isset($allresult_data)) @if(moduleStatusCheck('University')) @includeIf('university::exam.merit_list_report') @else

@lang('reports.merit_list_report')

{{generalSetting()->school_name}}

{{isset(generalSetting()->school_name)?generalSetting()->school_name:'Infix School Management ERP'}}

{{isset(generalSetting()->address)?generalSetting()->address:'Infix School Address'}}

@lang('common.email'): {{isset(generalSetting()->email)? generalSetting()->email:'hello@aorasoft.com'}} , @lang('common.phone'): {{isset(generalSetting()->phone)?generalSetting()->phone:'hello@aorasoft.com'}}

@lang('reports.order_of_merit_list')

@lang('common.academic_year') : {{ @$class->academic->year }}

@lang('exam.exam') : {{$exam_name}}

@lang('common.class') : {{$class_name}}

@lang('common.section') : {{$section->section_name}}

@lang('common.subjects')

    @foreach($assign_subjects as $subject)
  • {{$subject->subject->subject_name}}

  • @endforeach
{{-- --}} {{-- --}} @if(generalSetting()->result_type == 'mark') @else @endif @foreach($subjectlist as $subject) @endforeach @foreach($allresult_data as $key => $row) @php $total_student_mark = 0; $total = 0; $markslist = explode(',',$row->marks_string); @endphp @if(generalSetting()->result_type == 'mark') @else @endif @if(!empty($markslist)) @foreach($markslist as $mark) @php $subject_mark[]= $mark; $total_student_mark = $total_student_mark + $mark; $total = $total + $subject_total_mark; @endphp @endforeach @endif {{-- --}} @endforeach
@lang('common.name') @lang('student.admission_no') @lang('student.roll_no') @lang('reports.position')@lang('common.total_mark')@lang('common.obtained_marks')@lang('exam.total_mark')@lang('exam.average')@lang('reports.gpa'){{$subject}}
{{$row->student_name}} {{$row->admission_no}} {{$row->studentinfo->roll_no}} {{@getStudentMeritPosition($InputClassId, $InputSectionId, $InputExamId, $row->studentinfo->studentRecord->id)}} {{$row->total_marks}}{{ number_format(($row->total_marks / count($markslist)),2) }}{{$row->gpa_point}} {{!empty($mark)? $mark:0}}{{$total}}
@if($exam_content) @endif
@endif @endif @endsection