@php $seoBaseTitle = (string) ($meta['name'] ?? $meta['sName'] ?? $meta['title'] ?? 'Skill'); $seoTitle = $seoBaseTitle . ' • Vortex Sky X Wiki'; $rawDesc = $meta['sDescription'] ?? ($meta['description'] ?? []); $descLines = []; if (is_array($rawDesc)) { $descLines = array_values(array_filter(array_map(fn($v) => trim((string) $v), $rawDesc))); } elseif (is_string($rawDesc) && trim($rawDesc) !== '') { $descLines = [trim($rawDesc)]; } $seoDescription = trim(implode(' ', $descLines)); $gameName = $game ?? 'Vortex Sky X'; if ($seoDescription === '') { $seoDescription = 'Skill details, effects, and requirements for ' . $seoBaseTitle . ' in ' . $gameName . '.'; } $icon = (string) ($meta['icon'] ?? ''); $seoImage = $icon !== '' ? (str_starts_with($icon, 'http') ? $icon : url($icon)) : asset('images/WebLogo.png'); @endphp