@php use App\Support\Ui\EnterpriseDetail\FactPresentation; $items = $items ?? []; $items = is_array($items) ? array_values(array_filter($items, 'is_array')) : []; $action = $action ?? null; $action = is_array($action) ? $action : null; $variant = is_string($variant ?? null) && trim($variant) !== '' ? trim($variant) : 'default'; $gridClasses = match ($variant) { 'header' => 'grid gap-3 sm:grid-cols-2 xl:grid-cols-4', 'summary' => 'grid gap-3 lg:grid-cols-2', 'supporting' => 'grid gap-3 sm:grid-cols-2', 'diagnostic' => 'grid gap-3 sm:grid-cols-2 xl:grid-cols-4', 'technical' => 'grid gap-3 sm:grid-cols-2 xl:grid-cols-3', default => 'grid gap-3 sm:grid-cols-2', }; $cardClasses = match ($variant) { 'summary' => 'rounded-2xl border border-gray-200 bg-white px-4 py-4 shadow-sm dark:border-gray-800 dark:bg-gray-900', default => 'rounded-xl border border-gray-200 bg-gray-50/70 px-4 py-3 dark:border-gray-800 dark:bg-gray-950/30', }; @endphp