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

Laporan Keuangan

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