{{-- 🔹 PWA --}}
{{-- Título --}}
@yield('title', 'Datos Matrimonios')
{{-- Bootstrap --}}
@stack('styles')
Inicio
Planner
Artículos
Proveedores
Contacto
{{-- AUTH --}} @guest
Iniciar sesión
Crear cuenta
@else @php $role = auth()->user()->role; $dashboardRoute = match ($role) { 'admin' => route('admin.dashboard'), 'comercio' => route('comercio.dashboard'), 'planner' => url('/planner'), 'novios' => url('/planner'), default => route('home'), }; @endphp
{{ Auth::user()->name }}
Mi panel
@csrf
Cerrar sesión
@endguest {{-- PWA --}}
📲 Instalar app
{{-- SIDEBAR POR ROL (OCULTO EN VERIFY EMAIL) --}} @auth @if(!request()->routeIs('verification.notice') && !request()->routeIs('verification.verify')) @endif @endauth
@yield('content')
{{-- FOOTER --}} @stack('scripts')