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

Laporan Siswa

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