'fish',
str_contains($lowerName, 'морепроду') => 'shrimp',
str_contains($lowerName, 'икра') => 'caviar',
str_contains($lowerName, 'мяс') => 'meat',
str_contains($lowerName, 'сыр') => 'cheese',
str_contains($lowerName, 'полуфаб') => 'box',
str_contains($lowerName, 'овощ') || str_contains($lowerName, 'фрукт') || str_contains($lowerName, 'ягод') || str_contains($lowerName, 'гриб') => 'leaf',
str_contains($lowerName, 'бакале') => 'jar',
str_contains($lowerName, 'молоч') => 'milk',
default => 'grid',
};
}
}
if (!function_exists('category_tree_icon_svg')) {
function category_tree_icon_svg(string $icon): string
{
return match ($icon) {
'fish' => '',
'shrimp' => '',
'leaf' => '',
'caviar' => '',
'jar' => '',
'box' => '',
'meat' => '',
'cheese' => '',
'milk' => '',
default => '',
};
}
}