@php
$icons = [
'code' => '',
'smartphone' => '',
'palette' => '',
'trending-up' => '',
'cloud' => '',
'lightbulb' => '',
'shield' => '',
'chart' => '',
'globe' => '',
'default' => '',
];
$iconPath = $icons[$icon ?? 'default'] ?? $icons['default'];
@endphp