@extends('layouts.admin') @php $isDenison = !empty($analytics->category_scores) && isset($analytics->category_scores['denison-mission']); @endphp @section('title', $isDenison ? 'Culture Assessment Report' : 'Executive Summary') @section('header', $isDenison ? 'Culture Assessment Report' : 'Executive Summary Report') @section('subheader', $isDenison ? 'Denison Organizational Culture Model - Executive Summary' : 'High-level overview of engagement results') @section('header-actions') Download PDF @endsection @section('content') @include('company.partials.survey-selector') @include('company.partials.low-volume-warning')

{{ $survey->title }}

{{ $isDenison ? 'Denison Culture Assessment Report' : 'Executive Summary Report' }}

Generated: {{ now()->format('F j, Y') }}

@if($isDenison)
@php $dScores = $analytics->category_scores ?? []; $overallDenison = round((($dScores['denison-mission'] ?? 0) + ($dScores['denison-adaptability'] ?? 0) + ($dScores['denison-involvement'] ?? 0) + ($dScores['denison-consistency'] ?? 0)) / 4, 1); @endphp
{{ $overallDenison }}%
Overall Culture Score
@else
{{ round($analytics->overall_engagement_index) }}%
Engagement Index
@endif
@if($isDenison) {{-- Denison Quadrant --}} @include('company.partials.denison-quadrant') @endif

Response Overview

@include('company.partials.response-stats')

Engagement Classification

@include('company.partials.engagement-breakdown')

Engagement by Dimension

@foreach($categoryData as $cat)
{{ $cat['icon'] }} {{ $cat['name'] }}
@if($cat['score'] > 15) {{ round($cat['score']) }}% @endif
{{ $cat['interpretation']['label'] }}
@endforeach
@if($isDenison && !empty($subIndexScores)) @include('company.partials.denison-sub-indices') @endif @include('company.partials.benchmark-comparison')

Top Strengths

@if($analytics->top_items && count($analytics->top_items) > 0)
    @foreach(array_slice($analytics->top_items, 0, 3) as $item)
  1. {{ $loop->iteration }}

    {{ Str::limit($item['question_text'], 80) }}

    {{ $item['category'] }} · {{ round($item['score']) }}%
  2. @endforeach
@else

No data available

@endif

Priority Focus Areas

@if($analytics->bottom_items && count($analytics->bottom_items) > 0)
    @foreach(array_slice($analytics->bottom_items, 0, 3) as $item)
  1. {{ $loop->iteration }}

    {{ Str::limit($item['question_text'], 80) }}

    {{ $item['category'] }} · {{ round($item['score']) }}%
  2. @endforeach
@else

No data available

@endif
@if($isDenison) @include('company.partials.denison-recommendations') @else

Key Recommendations

@php $engagementLevel = $analytics->overall_engagement_index; @endphp @if($engagementLevel >= 70)

Overall Assessment: Strong engagement levels. Focus on sustaining momentum and addressing specific areas.

  1. Celebrate Success: Recognize and communicate what's working well across the organization.
  2. Target Improvements: Focus action plans on the specific dimensions scoring below 70%.
  3. Share Best Practices: Identify high-performing departments and replicate their approaches.
@elseif($engagementLevel >= 50)

Overall Assessment: Moderate engagement with room for improvement. Immediate action recommended.

  1. Leadership Visibility: Increase leadership communication about survey results and action plans.
  2. Focus Groups: Conduct sessions to understand root causes of lower-scoring items.
  3. Quick Wins: Identify and implement changes that can show progress within 30-60 days.
  4. Manager Training: Equip managers with tools to address team-specific concerns.
@else

Overall Assessment: Critical engagement levels requiring urgent intervention.

  1. Executive Commitment: Visible leadership commitment to addressing concerns is essential.
  2. Immediate Focus Groups: Conduct listening sessions across all departments within 2 weeks.
  3. Comprehensive Action Plan: Develop a detailed 90-day improvement plan with measurable goals.
  4. Communication Campaign: Regular updates on progress and actions taken.
  5. External Support: Consider engaging external consultants for objective guidance.
@endif
@endif
@endsection