{{-- ======================================== MENU UTENTE HEADER ======================================== Dropdown menu utente con profile, impostazioni, logout. Props: - $showAvatar (bool): Mostra avatar utente - $showStatus (bool): Mostra stato online/offline - $avatarSize (string): Dimensione avatar (sm, md, lg) Autore: NetGesCon Development Team Data: 2024 ======================================== --}} @props([ 'showAvatar' => true, 'showStatus' => true, 'avatarSize' => 'md' ]) @php $user = Auth::user(); $avatarSizes = [ 'sm' => '32px', 'md' => '40px', 'lg' => '48px' ]; $currentSize = $avatarSizes[$avatarSize] ?? $avatarSizes['md']; @endphp
{{-- CSS per menu utente --}} @push('styles') @endpush {{-- JavaScript per menu utente --}} @push('scripts') @endpush