@extends('layouts.app') @section('title', 'Incident Dashboard') @section('content')

Total Incidents

{{ $stats['total'] }}

Open Incidents

{{ $stats['open'] }}

Investigating

{{ $stats['investigating'] }}

Closed

{{ $stats['closed'] }}

Recent Incidents

@forelse($recentIncidents as $incident) @empty @endforelse
Reference Title Severity Status Reported By Date Actions
{{ $incident->reference_number }}
{{ $incident->title ?? $incident->incident_type }}
{{ Str::limit($incident->description, 50) }}
{{ ucfirst($incident->severity) }} {{ ucfirst($incident->status) }} {{ $incident->reporter->name ?? 'N/A' }} {{ $incident->created_at->format('M j, Y') }} View
No recent incidents found
@endsection