@php $currentRoute = request()->route() ? request()->route()->getName() : ''; $currentPath = request()->path(); $homeActivePages = ['home', 'contact', 'about']; $isHomeActive = in_array($currentRoute, $homeActivePages) || $currentPath === '/' || $currentPath === 'contato' || $currentPath === 'sobre'; @endphp @stack('styles')
@yield('content')
@stack('scripts')