@if(isset($result['type']) && $result['type'] == 'text')
| # |
Jawapan |
@forelse($result['data'] as $answer)
| {{ $loop->iteration }} |
{{ $answer }} |
@empty
| Tiada jawapan. |
@endforelse
@else
| Pilihan Jawapan |
Kekerapan |
Peratus(%) |
@foreach($result['data'] as $stat)
| {{ $stat['label'] }} |
{{ $stat['count'] }} |
{{ $stat['percentage'] }}% |
@endforeach
| JUMLAH |
{{ $result['total'] }} |
100% |
@if(!empty($result['other_answers']))
Lain-lain:
@foreach($result['other_answers'] as $otherAns)
{{ $otherAns }}
@endforeach
@endif
@endif