@extends('admin.layouts.app')
@section('title', 'Reports')
@section('breadcrumb')
@foreach([
['Attendance Report', 'clipboard-data-fill', 'Subject-wise, student-wise attendance with below-75% highlights', route('admin.reports.attendance'), '#dbeafe', '#2563eb'],
['Fee Collection Report', 'cash-stack', 'Payment history, pending fees, collection summary', route('admin.reports.fees'), '#dcfce7', '#16a34a'],
['Student Report', 'people-fill', 'Student database, community-wise breakdown, class distribution', route('admin.reports.students'), '#ede9fe', '#7c3aed'],
['Application Report', 'file-earmark-person-fill', 'Application status, admission funnel', route('admin.reports.applications'), '#fef3c7', '#d97706'],
] as [$title, $icon, $desc, $url, $bg, $color])
@endforeach
@endsection