@php $user = auth()->user(); $initials = collect(explode(' ', trim((string) $user?->name))) ->filter()->take(2)->map(fn ($p) => strtoupper(substr($p, 0, 1)))->implode(''); @endphp
{{-- Mobile: app name --}} @include('partials.mobile-topbar-title') {{-- Desktop: search (tickets) --}}
@includeIf('partials.topbar-widgets-prepend') @include('partials.topbar-desktop-widgets', ['user' => $user, 'showUser' => true]) @includeIf('partials.topbar-widgets-append')