@extends('layouts.app') @section('title', 'Corporate Reports') @section('content')

Corporate / SACCO Reports

Pick a report. All reports support PDF, Excel and CSV export.

@php $reports = [ ['key' => 'member-register', 'title' => 'Corporate Member Register', 'desc' => 'Full list of principals and dependants per scheme.'], ['key' => 'premium-collection', 'title' => 'Premium Collection Report', 'desc' => 'Premiums received in the selected billing month.'], ['key' => 'premium-due', 'title' => 'Premium Due Report', 'desc' => 'Members with outstanding premiums and overdue counts.'], ['key' => 'utilization', 'title' => 'Utilization Report', 'desc' => 'All corporate-tagged encounters with amounts.'], ['key' => 'department-utilization','title' => 'Department Utilization', 'desc' => 'Utilization broken down by department/module.'], ['key' => 'high-utilizers', 'title' => 'High Utilizers Report', 'desc' => 'Top members by corporate amount consumed.'], ['key' => 'non-compliant', 'title' => 'Non-Compliant Members', 'desc' => 'Members in Premium Due / Suspended / Grace status.'], ['key' => 'pool-performance', 'title' => 'Pool Performance / Claims Ratio','desc' => 'Premium pool vs utilization with risk band.'], ['key' => 'pilot-summary', 'title' => '3-Month Pilot Summary', 'desc' => 'Monthly snapshots over the pilot window with recommendation.'], ['key' => 'audit-trail', 'title' => 'Audit Trail Report', 'desc' => 'Filterable audit entries for compliance review.'], ]; @endphp
@foreach ($reports as $r)
{{ $r['title'] }}
{{ $r['desc'] }}
Open report →
@endforeach
@endsection