@props([ 'title' => 'Executive BI Platform', 'pageTitle' => 'Executive Dashboard', 'active' => 'dashboard', ]) @php $user = auth()->user(); $avatar = $user ? strtoupper(substr($user->name, 0, 1)) : 'E'; $navigationItems = [ ['id' => 'dashboard', 'label' => 'Dashboard', 'route' => route('executive.dashboard')], ['id' => 'reporting', 'label' => 'Reporting', 'route' => route('executive.governance')], ['id' => 'forecasting', 'label' => 'Forecasting', 'route' => route('executive.forecasting')], ['id' => 'analytics', 'label' => 'Analytics', 'route' => route('executive.analytics')], ['id' => 'ml-ops', 'label' => 'ML / AI Ops', 'route' => route('executive.forecast-drill-down')], ]; $showAdminItem = $user && $user->hasAnyRole(['superadmin', 'admin']); @endphp