@php
$items = $this->getSecurityRecommendations();
@endphp
@foreach ($items as $item)
@php
$ok = $item['ok'] ?? false;
$icon = $ok ? 'heroicon-o-check-circle' : 'heroicon-o-exclamation-triangle';
$iconColor = $ok ? '#22c55e' : '#f59e0b';
@endphp
@endforeach