@extends('backend.layouts.master') @section('pageTitle') Exam @endsection @section('pageContent')

Exam List

{!! Form::select('class_id', $classes, $iclass , ['placeholder' => 'Pick a class...','class' => 'form-control select2', 'required' => 'true', 'id' => 'class_id_filter']) !!}
@foreach($exams as $exam) @php $marksDistributionTypes = json_decode($exam->marks_distribution_types,true); @endphp @endforeach
# Class Name Elective Subject Point Above Addition Marks Distribution Types Open For Marks Entry Status Action
{{$loop->iteration}} {{ $exam->class->name }} {{ $exam->name }} {{ $exam->elective_subject_point_addition }} @foreach($marksDistributionTypes as $type) {{AppHelper::MARKS_DISTRIBUTION_TYPES[$type]}} @endforeach open_for_marks_entry) checked @endif data-toggle="toggle" data-on="Yes" data-off="No" data-onstyle="success" data-offstyle="danger"> status) checked @endif data-toggle="toggle" data-on="" data-off="" data-onstyle="success" data-offstyle="danger">
@csrf
# Class Name Elective Subject Point Above Addition Marks Distribution Types Open For Marks Entry Status Action
@endsection @section('extraScript') @endsection