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

Laporan Keuangan

{!! Form::open(['id' => 'form-submit','route' => ['laporanKeuangan.export'], 'method' => 'get']) !!} {{-- --}}
{{--
{!! Form::open(['class' => 'row pt-3 pl-3', 'route' => ['laporanKeuangan.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('id_bayar', $bayar, $bayar[$selectedBayar] ? $selectedBayar : null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
--}}
@include('laporan_keuangan.table')
@endsection {{-- @section('scripts') @endsection --}}