@extends('layouts.app') @push('styles') @endpush @section('content')

Statistik: {{ $survey->title }}

Analisis data respons bagi borang ini.

{{ $totalSurveyRespondents }}

Jumlah Responden

{{ $totalSurveyQuestions }}

Jumlah Soalan
@foreach($results as $questionId => $result)
Soalan: {{ $result['question'] }}
@if(isset($result['type']) && $result['type'] == 'text') {{-- DISPLAY TEXT ANSWERS --}}
@forelse($result['data'] as $index => $answer) @empty @endforelse
# Jawapan Responden
{{ $loop->iteration }} {{ $answer }}
Tiada jawapan.
@else {{-- DISPLAY CHART FOR RADIO/CHECKBOX --}}
@foreach($result['data'] as $stat) @endforeach
Pilihan Jawapan Kekerapan Peratus (%)
{{ $stat['label'] }} {{ $stat['count'] }} {{ $stat['percentage'] }}%
JUMLAH {{ $result['total'] }} 100%
@if(!empty($result['other_answers']))
Jawapan Lain-lain:
    @foreach($result['other_answers'] as $otherAns)
  • {{ $otherAns }}
  • @endforeach
@endif @endif
@endforeach
{{-- Load Chart.js CDN (Kalau belum ada dalam layout) --}} @endsection