@foreach($options as $value => $config)
@php
$isActive = $value == $selected;
$label = $config['label'] ?? ucfirst($value);
$icon = $config['icon'] ?? 'bi-circle';
$theme = $config['theme'] ?? '';
$tooltip = $config['tooltip'] ?? '';
$btnClass = $isActive ? "btn btn-{$theme} text-white" : "btn btn-outline-{$theme}";
@endphp
@endforeach
@once
@endonce