@extends('layouts.app') @section('title', 'Management Dashboard') @push('styles') @endpush @section('content') {{-- Active cycle --}} @if($stats['active_cycle'])

Active Reward Cycle

{{ $stats['active_cycle']->name }}
{{ $stats['active_cycle']->start_date->format('d M Y') }} {{ $stats['active_cycle']->end_date->format('d M Y') }} {{ $stats['active_cycle']->end_date->diffForHumans() }} remaining
@endif {{-- Stats --}}
{{ $stats['total_feedback'] }}
Total Submissions
{{ $stats['total_valuable'] }}
Marked Valuable
{{ $stats['total_implementable'] }}
Implementable
{{ $projectStats->count() }}
Active Projects
{{-- Project breakdown --}}

Submissions by Project

@php $maxCount = $projectStats->max('survey_responses_count') ?: 1; @endphp @foreach($projectStats as $project)
{{ $project->name }}
{{ $project->survey_responses_count }}
@endforeach
@endsection