@extends('layouts.app') @section('title', 'First Aid Logbook') @section('content')

First Aid Logbook

First aid incident records

Dashboard New Entry
Reset
@forelse($entries as $entry) @empty @endforelse
Reference Date Injured Person Location Severity Actions
{{ $entry->reference_number }} {{ $entry->incident_date->format('M d, Y') }} {{ $entry->injured_person_name ?? ($entry->injuredPerson->name ?? 'N/A') }} {{ $entry->location ?? 'N/A' }} {{ ucfirst($entry->severity) }} View Edit
No entries found.
{{ $entries->links() }}
@endsection