{{-- Profile Reaction Status Badge View --}}
{{-- Online Status --}} @if($showOnlineStatus)
{{-- Status Dot --}}
{{-- Status Text (unless compact mode) --}} @if(!$compactMode) @if($isOnline) Online @elseif($lastSeen) {{ $lastSeen->diffForHumans() }} @else Offline @endif @endif
@endif {{-- Reactions --}} @if($showReactions && count($reactions) > 0)
@foreach($reactions as $reaction) @if($compactMode) {{-- Compact: Just show icons --}} {{ $reaction['icon'] }} @else {{-- Full: Clickable badges --}} @endforeach @endif
@endif