{{-- SIDEBAR --}} @include('layouts.partials.sidebar')
{{-- HEADER --}}

Sistema Help Desk Municipal

Municipalidad - Mesa de Ayuda

{{-- 🔔 NOTIFICACIONES --}}
{{-- DROPDOWN --}}
Notificaciones
@forelse(auth()->user()->unreadNotifications as $n)
{{ $n->data['mensaje'] }}
@empty

Sin notificaciones

@endforelse
@csrf
{{-- 👤 USUARIO --}}

{{ auth()->user()->name }}

{{ auth()->user()->getRoleNames()->first() }}

{{-- Dropdown --}}
Perfil
@csrf
{{-- ALERTAS --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- CONTENIDO --}}
@yield('content')
{{-- 🔊 SCRIPT NOTIFICACIONES EN TIEMPO REAL --}} @stack('scripts')