@extends('layouts.app') @section('title') Laporan Guru @endsection @section('css') @endsection @section('content')

Laporan Guru

{!! Form::open(['id' => 'form-submit','route' => ['laporanGuru.export'], 'method' => 'post']) !!}
{!! Form::open(['class' => 'row pt-3 pl-3', 'route' => ['laporanGuru.index'], 'method' => 'get']) !!}
{!! Form::select('id_tahun_ajaran', $tahunAjaran, $tahunAjaran[$selectedTahun] ? $selectedTahun : null, ['class' => 'form-control']) !!}
{!! Form::select('bulan', $arrBulan, $arrBulan[$selectedBulan] ? $selectedBulan : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@include('laporan_guru.table')
@endsection @section('scripts') @endsection