@php $topbarHorizontalNav = false; if (auth()->check() && request()->is('company', 'company/*')) { try { $topbarSettings = \App\Services\SidebarSettingsService::forCompany( \App\Services\CompanyService::resolveForUser(auth()->user()) ); $topbarHorizontalNav = ($topbarSettings['layout'] ?? 'vertical') === 'horizontal'; } catch (\Throwable $e) { // keep false } } @endphp

@yield('page-title', 'Dashboard')

@hasSection('breadcrumb')
@yield('breadcrumb')
@endif
@if(! $topbarHorizontalNav)
@include('layouts.partials.user-menu-dropdown', ['variant' => 'topbar'])
@endif