@php $title = $resolved ? "Incident Resolved — {$services}" : "Incident Detected — {$services}"; $impactValue = $incident->impact->value; $alertType = $resolved ? 'success' : ($impactValue === 'critical' ? 'danger' : ($impactValue === 'major' ? 'warning' : 'info')); @endphp @if ($resolved) Resolved — The following incident has been automatically resolved. @else {{ ucfirst($impactValue) }} impact — An automated health check has detected a service issue. @endif Incident {{ $incident->title }} Affected services {{ $services }} Impact {{ ucfirst($impactValue) }} Status {{ ucfirst($incident->status->value) }} Started {{ $incident->started_at->format('M j, Y g:i A T') }} @if ($resolved && $incident->resolved_at) Resolved {{ $incident->resolved_at->format('M j, Y g:i A T') }} Duration {{ $incident->started_at->diffForHumans($incident->resolved_at, true) }} @endif @if ($incident->description) Details:
{!! nl2br(e($incident->description)) !!}
@endif View status dashboard

— {{ $site }} Monitoring