@extends('admin::layouts.plane') @section('page_heading') {{ $title }} @endsection @section('content')
{{ $title }} {{ Form::open(['url' => 'config/subTeacherReport', 'method' => 'post']) }} {{ csrf_field() }} {{ Form::select('schoolName', $schools, $schoolName, ['placeholder' => '--Select School--', 'class' => 'schoolName', 'id' => 'schoolName', 'required' => '']) }} {{ Form::select('result_type', $result_types, $result_type, ['placeholder' => '--Select--', 'class' => 'result_type', 'id' => 'result_type', 'required' => '']) }} {{ Form::select('selectedSession', $session_list, $selectedSession, ['placeholder' => '--Select Session--', 'class' => 'sessionName', 'id' => 'sessionName', 'required' => '']) }} {{ Form::close() }}

@if (count($report_data))
@foreach ($report_data as $class => $class_section) @foreach ($class_section as $section => $mappings) @foreach ($mappings as $mapping) @endforeach @endforeach @endforeach
Subject ID Subject Name Teacher Name Teacher ID
{{ $arrClasses[$class] ?? $class }} - {{ $section }}
{{ $mapping["subject_id"] }} {{ $mapping["subject_name"] }} {{ $mapping["teacher_name"] }} {{ $mapping["teacher_id"] }}
@endif
@stop