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

Monthly Attendance

Section wise monthly attendance

@csrf @if(count($errors->all()))
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::select('academic_year', $academic_years, $default_academic_year , ['placeholder' => 'Pick a year...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('academic_year') }}
{!! Form::select('class_id', $classes, null , ['placeholder' => 'Pick a class...','class' => 'form-control select2', 'required' => 'true']) !!} {{ $errors->first('class_id') }}
{!! Form::select('section_id', [], null , ['placeholder' => 'Pick a section...','class' => 'form-control select2', 'id' => 'section_id_filter', 'required' => 'true']) !!} {{ $errors->first('section_id') }}
{{ $errors->first('month') }}
@endsection @section('extraScript') @endsection