@php $panelId = $tab['id']; $panelLabel = $tab['label']; $isActive = $isActive ?? true; $isStandalone = $isStandalone ?? false; $categorySlug = $categorySlug ?? null; $shopProducts = []; if ($panelId === 'hardware' && ! empty($catalog['shop_products'])) { $shopProducts = array_map(static function (array $product): array { $product['image'] = str_starts_with($product['image'], 'http') ? $product['image'] : asset($product['image']); return $product; }, $catalog['shop_products']); } @endphp