{{-- Denison-specific recommendations based on trait scores --}} @php $scores = $analytics->category_scores ?? []; $mission = $scores['denison-mission'] ?? 0; $adaptability = $scores['denison-adaptability'] ?? 0; $involvement = $scores['denison-involvement'] ?? 0; $consistency = $scores['denison-consistency'] ?? 0; $traits = [ ['name' => 'Mission', 'score' => $mission, 'icon' => 'compass'], ['name' => 'Adaptability', 'score' => $adaptability, 'icon' => 'sync-alt'], ['name' => 'Involvement', 'score' => $involvement, 'icon' => 'users'], ['name' => 'Consistency', 'score' => $consistency, 'icon' => 'cogs'], ]; usort($traits, fn($a, $b) => $a['score'] <=> $b['score']); $weakest = $traits[0]; $secondWeakest = $traits[1]; $strongest = $traits[3]; @endphp
Based on the Denison Organizational Culture Model analysis of {{ $analytics->total_responses }} respondents, the organization demonstrates a culture profile characterized by strong {{ strtolower($strongest['name']) }} ({{ round($strongest['score']) }}% favorability) with opportunity areas in {{ strtolower($weakest['name']) }} ({{ round($weakest['score']) }}%) and {{ strtolower($secondWeakest['name']) }} ({{ round($secondWeakest['score']) }}%).
Employees understand and align with the organizational direction. Maintain this through continued strategic communication and visible leadership commitment to the vision.
The organization responds well to change and values learning. Continue investing in innovation programs and maintaining external awareness.
Employees feel empowered and engaged. Continue fostering team orientation and capability development programs.
Strong internal alignment and shared values. Systems and processes support effective coordination across the organization.