@php $hour = (int) now()->format('H'); if ($hour >= 5 && $hour < 12) { $greeting = 'Bună dimineața'; $icon = '☀️'; } elseif ($hour >= 12 && $hour < 18) { $greeting = 'Bună ziua'; $icon = '🌤️'; } elseif ($hour >= 18 && $hour < 22) { $greeting = 'Bună seara'; $icon = '🌅'; } else { $greeting = 'Noapte bună'; $icon = '🌙'; } @endphp

{{ Auth::user()->name }} {{ $icon }}