@auth
Início
Projetos
@php // Define a rota baseada na URL atual $routePlus = null; if (request()->is('projetos*')) { $routePlus = route('projetos.create'); } elseif (request()->is('dashboard*')) { $routePlus = route('projetos.create'); } elseif (request()->is('tarefas*')) { $routePlus = route('tarefas.create', isset($projeto->id) ? ['id' => $projeto->id] : []); } elseif (request()->is('pessoas*')) { $routePlus = route('pessoas.create'); } @endphp @if($routePlus)
@endif
Tarefas
Clientes
@endauth
@auth
FlowUp
768) userMenuOpen = false" x-transition:enter="transition transform md:transition-opacity duration-500 md:duration-200 ease-out" x-transition:enter-start="translate-y-full md:translate-y-0 md:opacity-0 md:scale-95" x-transition:enter-end="translate-y-0 md:opacity-100 md:scale-100" class="fixed bottom-0 left-0 right-0 h-[80%] z-[110] bg-white flex flex-col rounded-t-[40px] border-t border-gray-100 shadow-2xl md:absolute md:top-full md:bottom-auto md:right-0 md:left-auto md:h-auto md:w-72 md:rounded-2xl md:mt-2 md:border md:origin-top-right">
Minha Conta
{{ Auth::user()->name }}
{{ Auth::user()->email }}
Editar Perfil
Altere seus dados
Configurações
Sair da Conta
@csrf
@csrf
@endauth @if(request()->is('dashboard') || request()->is('/'))
Olá, {{ auth()->user()->name }}
Bem-vindo de volta!
Saldo do Mês
R$ {{ number_format($saldoMes, 2, ',', '.') }}
@endif
@yield('content')