@extends('layouts.app') @section('title', 'Incidents') @section('content')
| Incident # | Date | Type | Severity | Dept | Description | Status |
|---|---|---|---|---|---|---|
| {{ $i->incident_number }} | {{ $i->date->format('d M') }} | {{ $i->type }} | {{ ucfirst($i->severity) }} | {{ $i->department->name ?? '' }} | {{ Str::limit($i->description,50) }} | {{ $i->status }} |