@php $admin = auth()->user(); $adminName = $admin?->name ?? 'Admin User'; $adminInitials = collect(explode(' ', trim($adminName)))->map(fn($w) => strtoupper(substr($w, 0, 1)))->take(2)->implode(''); @endphp
@yield('content')