@php $footerData = is_array($homeSharedData['footer'] ?? null) ? $homeSharedData['footer'] : []; $cta = is_array($footerData['cta'] ?? null) ? $footerData['cta'] : []; $newsletter = is_array($footerData['newsletter'] ?? null) ? $footerData['newsletter'] : []; $groups = is_array($footerData['groups'] ?? null) ? $footerData['groups'] : []; $aboutGroup = is_array($groups['about'] ?? null) ? $groups['about'] : ['title' => __('common.footer.about_title'), 'items' => []]; $termsGroup = is_array($groups['terms'] ?? null) ? $groups['terms'] : ['title' => __('common.footer.terms_title'), 'items' => []]; $faqGroup = is_array($groups['faq'] ?? null) ? $groups['faq'] : ['title' => __('common.footer.faq_title'), 'items' => []]; $socials = is_array($footerData['socials'] ?? null) ? $footerData['socials'] : []; $company = is_array($footerData['company'] ?? null) ? $footerData['company'] : ['name' => '', 'details' => []]; @endphp