{{-- Componente: online-friend-item Uso: Espera un objeto $friend con: name, role, avatar, status (online|away|offline) --}} @props(['friend']) @php $statusColors = [ 'online' => 'bg-success', 'away' => 'bg-warning', 'offline' => 'bg-secondary', ]; $statusColor = $statusColors[$friend->status ?? 'online'] ?? 'bg-success'; @endphp