@if ($items === [])

{{ $emptyState['title'] ?? 'Nothing urgent in your current scope' }}

{{ $emptyState['body'] ?? 'Recent operations and alert deliveries look healthy right now.' }}

@if (filled($emptyState['action_url'] ?? null))
{{ $emptyState['action_label'] ?? 'Open operations' }}
@endif
@else
@foreach ($items as $item)
{{ $item['title'] }}
{{ $item['body'] }}
{{ $item['badge'] }}
@endforeach
@endif