@extends('admin::layouts.plane') @section('page_heading') {{$title}} @endsection @section('content')
{{$title}}

{{$errorMsg}}

{{ Form::open([ 'method' => 'post', 'url' => 'config/manageObserver','class' => 'form-horizontal']) }} {{ csrf_field() }}
{{ Form::select('school_id', $schools_list, $school_id, ['id' => 'school_id','placeholder' => '- School -', 'class' => 'form-control', 'required' => '']) }}
{{ Form::select('selectedSession', $session_list, $selectedSession, ['placeholder' => '--Select Session--', 'class' => 'sessionName', 'id' => 'sessionName', 'required' => '']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-info']) }}
{{ Form::close() }}
@if(count($obArr) > 0)
@php $i = 1; @endphp @foreach($obArr as $key => $val) @php $i++; @endphp @endforeach
EmpId Name Classes
{{$key}} @if(isset($empArr[$key]) && isset($empSchoolArr[$key])) {{$empArr[$key]}} @elseif(isset($empArr[$key])) {{$empArr[$key]}} @endif @if($val > 1) {{ implode( ',', $val ) }} @else {{ $val }} @endif
@endif
@stop