F O X
@php
$statusDot = match ($status) {
'thinking' => 'bg-amber-400 shadow-[0_0_8px_rgb(251_191_36)]',
'speaking' => 'bg-cyan-400 shadow-[0_0_8px_rgb(34_211_238)]',
default => 'bg-emerald-400 shadow-[0_0_8px_rgb(52_211_153)]',
};
$statusText = match ($status) {
'thinking' => 'Denkt nach …',
'speaking' => 'Spricht …',
default => 'Online',
};
@endphp
{{ $statusText }}
{{ $label }}