@extends('backEnd.master') @section('title') Tabulation Report @endsection @section('mainContent')

Tabulation Report

Select Criteria

@if(session()->has('message-success') != "") @if(session()->has('message-success'))
{{ session()->get('message-success') }}
@endif @endif @if(session()->has('message-danger') != "") @if(session()->has('message-danger'))
{{ session()->get('message-danger') }}
@endif @endif
{{ Form::open(['class' => 'form-horizontal', 'files' => true, 'route' => 'reports_tabulation_sheets', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'id' => 'search_student']) }}
@if ($errors->has('exam')) {{ $errors->first('exam') }} @endif
@if ($errors->has('class')) {{ $errors->first('class') }} @endif
@if ($errors->has('section')) {{ $errors->first('section') }} @endif
{{ Form::close() }}
@if(isset($marks_registers))

Merit list Report

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

House 25, Road 27, Block B, 54th Floor, New York, United States of America

Order of merit list

Academic Year : 2018-19

Exam : {{$exam->name}}

Class : {{$class->class_name}}

Section : {{$section->section_name}}

Subjects

@foreach($subjects as $subject)

{{$subject->subject->subject_name}}

@endforeach
@foreach($subjectlist as $subject) @endforeach @php $i=1; @endphp @foreach($allresult_data as $row) @php $markslist = explode(',',$row->marks_string); @endphp @foreach($markslist as $mark) @endforeach @endforeach
Student Position Admission No.{{$subject}}Total Marks Average GPA Result
{{$row->student_name}} {{$i++}} {{$row->admission_no}}{{$mark}}{{$row->total_marks}} {{$row->average_mark}} {{$row->gpa_point}}
@endif @endsection