@extends('layouts.app')
@section('title', 'Reports')
@section('breadcrumb')
@foreach([
['route' => 'reports.active', 'icon' => 'check-circle-fill', 'color' => 'success', 'title' => 'Active Licenses', 'desc' => 'All currently active licenses'],
['route' => 'reports.expired', 'icon' => 'x-circle-fill', 'color' => 'danger', 'title' => 'Expired Licenses', 'desc' => 'All expired licenses'],
['route' => 'reports.renewal-due', 'icon' => 'calendar-check-fill', 'color' => 'warning', 'title' => 'Renewal Due', 'desc' => 'Licenses expiring in 30 days'],
['route' => 'reports.customer-wise', 'icon' => 'people-fill', 'color' => 'info', 'title' => 'Customer-wise', 'desc' => 'License breakdown by customer'],
['route' => 'reports.validation-logs', 'icon' => 'journal-check', 'color' => 'primary', 'title' => 'Validation Logs', 'desc' => 'API validation history'],
['route' => 'reports.revenue', 'icon' => 'currency-rupee', 'color' => 'secondary', 'title' => 'Revenue Report', 'desc' => 'Renewal & revenue summary'],
] as $report)
{{ $report['title'] }}
{{ $report['desc'] }}
@endforeach
@endsection