@php $type_list = [ 'page' => 'Pagine', 'products_seasons' => 'Stagioni', 'products_categories' => 'Categorie', 'products_lines' => 'Linee', ]; $products_attributes_terms = []; if(!empty($products_attributes)){ foreach ($products_attributes as $attribute) { $attribute_terms = $attribute->get_terms(); if(!empty($attribute_terms)){ $type_list['products_attributes_' . $attribute->get_sku()] = 'Attributo ' . $attribute->get_name(); $products_attributes_terms['products_attributes_' . $attribute->get_sku()] = $attribute_terms; } } } $type_list['link'] = 'Link personalizzati'; @endphp