{{ $survey->title }}

Laporan Statistik - {{ date('d/m/Y H:i') }}

{{ $totalSurveyRespondents }}

Responden

{{ $totalSurveyQuestions }}

Soalan
@foreach($results as $questionId => $result)
Soalan {{ $loop->iteration }}: {{ $result['question'] }}
@if(isset($result['type']) && $result['type'] == 'text')
@forelse($result['data'] as $answer) @empty @endforelse
# Jawapan
{{ $loop->iteration }} {{ $answer }}
Tiada jawapan.
@else
@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']))
Lain-lain:
@foreach($result['other_answers'] as $otherAns) {{ $otherAns }} @endforeach
@endif @endif
@endforeach