@extends('layouts.admin') @php $isDenison = !empty($analytics->category_scores) && isset($analytics->category_scores['denison-mission']); @endphp @section('title', $isDenison ? 'Culture Profile' : 'Engagement Index') @section('header', $isDenison ? 'Denison Culture Profile' : 'Engagement Index') @section('subheader', $isDenison ? 'Organizational culture assessment across four critical traits' : 'Overall employee engagement classification') @section('content') @include('company.partials.survey-selector') @include('company.partials.low-volume-warning')

Response Overview

@include('company.partials.response-stats')
@if($isDenison) {{-- Denison Culture Profile --}} @include('company.partials.denison-quadrant') @endif
@php $engagementIndex = $analytics->overall_engagement_index ?? 0; $interpretation = \App\Models\Category::getScoreInterpretation($engagementIndex); @endphp
{{ round($engagementIndex) }}%
Engaged Employees
{{ $interpretation['label'] }}

{{ $interpretation['description'] }}

Employee Classification

@foreach(['engaged', 'not_engaged', 'actively_disengaged', 'unknown'] as $key) @php $data = $engagementBreakdown[$key]; @endphp @if($key !== 'unknown' || $data['count'] > 0)
{{ $data['label'] }}

{{ $data['description'] }}

@if($data['percentage'] > 15) {{ $data['count'] }} @endif
@if($lowVolumeWarnings['show_percentages']) {{ round($data['percentage']) }}% @else {{ $data['count'] }} @endif
@endif @endforeach
Total Responses {{ $analytics->total_responses }}

Classification Methodology

Employees are classified based on their responses to Likert-scale questions:

  • Engaged: 75%+ favorable responses (4-5 on 5-point scale), no unfavorable responses. These employees are highly involved and enthusiastic.
  • Not Engaged: Employees who don't meet the criteria for engaged or disengaged. They're putting in time but not energy.
  • Actively Disengaged: 33%+ unfavorable responses (1-2) or average below 2.5. These employees may be undermining workplace morale.
  • Unclassified: Responses without sufficient Likert-scale answers to determine classification.

Based on Gallup Q12 engagement classification framework.

@if($isDenison && !empty($subIndexScores)) @include('company.partials.denison-sub-indices') @endif @include('company.partials.benchmark-comparison')
@endsection