@foreach($themes as $theme) @php $tid = $theme['id'] ?? $loop->index; $value = $theme['value']; $src = $theme['src'] ?? ''; $themeTitle = $theme['name'] ?? "Theme {$tid}"; // <- renamed $desc = $theme['desc'] ?? ''; $w = $theme['width'] ?? 120; $h = $theme['height'] ?? 80; $inputId = "{$id}_option_{$tid}"; // ensure the radio group name comes from the component prop ($name) $groupName = $name ?? 'cat_theme'; @endphp @endforeach