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

PPE Compliance Reports

Generate and view compliance reports

Generate Report
@forelse($reports as $report) @empty @endforelse
Reference Report Type Period Compliance Rate Status Actions
{{ $report->reference_number }} {{ ucfirst(str_replace('_', ' ', $report->report_type)) }} {{ $report->report_period_start->format('M d, Y') }} - {{ $report->report_period_end->format('M d, Y') }} {{ number_format($report->compliance_rate, 1) }}% {{ ucfirst($report->status) }} View
No reports found
{{ $reports->links() }}
@endsection