@php $user = auth()->user(); $initials = collect(explode(' ', trim((string) $user?->name))) ->filter() ->take(2) ->map(fn ($part) => strtoupper(substr($part, 0, 1))) ->implode(''); @endphp
@include('partials.mobile-topbar-title')
@auth @includeIf('partials.topbar-account-switcher') @includeIf('partials.topbar-widgets-prepend') @include('partials.topbar-desktop-widgets', ['user' => $user ?? $u ?? auth()->user(), 'showUser' => true]) @includeIf('partials.topbar-widgets-append') @else Sign in @include('partials.launcher') @endauth