@extends('layouts.app') @section('title', 'Standard Reports') @section('breadcrumbs') @endsection @section('content')

Standard Reports

Generate on-demand reports with custom date ranges

← Monthly Reports
{{-- Report Generator --}}

Generate Report

@csrf
{{-- Available Reports Grid --}}
@foreach($reportCategories as $catKey => $category)

{{ $category['label'] }}

@foreach($category['reports'] as $reportKey => $reportLabel)
{{ $reportLabel }}
@endforeach
@endforeach
@push('scripts') @endpush @endsection