@extends('layouts.admin') @section('title', 'Safety Alerts') @section('content')

Safety alerts

Review safety screening alerts and acknowledge staff response.

Back to dashboard
@forelse ($alerts as $alert) @empty @endforelse
Patient Triggered Status Care team
{{ $alert->patientProfile?->user?->name ?? 'Patient' }}

{{ $alert->room_location ?? 'Location not reported' }}

{{ $alert->triggered_at?->format('M j, Y g:ia') ?? '—' }} @if ($alert->acknowledged_at) Acknowledged @else Active @endif

PCP: {{ $alert->patientProfile?->pcp?->name ?? 'Unassigned' }}

BHCM: {{ $alert->patientProfile?->bhcm?->name ?? 'Unassigned' }}

Review
No safety alerts found.
{{ $alerts->links() }}
@endsection