@extends('layouts.app') @section('title', $incident->reference_number) @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('dashboard'), 'icon' => 'fa-home'], ['label' => 'Incidents', 'url' => route('incidents.index'), 'icon' => 'fa-exclamation-triangle'], ['label' => $incident->reference_number, 'url' => null, 'active' => true] ]; @endphp @section('content')
{{ $incident->reference_number }}
This incident requires attention and investigation.
Investigation is in progress.
This incident has been resolved and closed.
N/A
@endif
{{ $incident->incident_date->format('F j, Y') }}
{{ $incident->incident_date->format('g:i A') }}
{{ $incident->location }}
@if($incident->location_specific){{ $incident->location_specific }}
@endif{{ $incident->department->name ?? 'N/A' }}
{{ $incident->assignedTo->name ?? 'Unassigned' }}
{{ $incident->description }}
{{ ucfirst(str_replace('_', ' ', $incident->injury_type)) }}
{{ $incident->body_part_affected }}
{{ $incident->nature_of_injury }}
Yes @if($incident->days_lost) ({{ $incident->days_lost }} days) @endif
{{ $incident->medical_treatment_details }}
{{ $incident->asset_damaged }}
${{ number_format($incident->estimated_cost, 2) }}
Filed
{{ $incident->damage_description }}
{{ ucfirst($incident->potential_severity) }}
{{ $incident->potential_consequences }}
{{ $incident->preventive_measures_taken }}
Reported By
{{ $incident->reporter->name ?? $incident->reporter_name ?? 'Anonymous' }}
@if($incident->reporter){{ $incident->reporter->email }}
@endifReported On
{{ $incident->created_at->format('M j, Y g:i A') }}
Assigned To
{{ $incident->assignedTo->name }}
Pending Approval
Related Hazard
{{ $incident->relatedHazard->reference_number }} - {{ $incident->relatedHazard->title }}Related Risk Assessment
{{ $incident->relatedRiskAssessment->reference_number }} - {{ $incident->relatedRiskAssessment->title }}Gap Analysis
{{ $incident->risk_assessment_gap_analysis }}