@extends('admin.main') @section('content')
{{ $survey->q_name }}

Date Created

{{ $survey->created_at }}

Completed by:

{{ $userCount }}

Responses

This is a list of latest Responses.

Answer Choices

Responses

@foreach ($answerCounts as $answer => $count)

{{ $answer }}

{{ number_format(($count / $userCount) * 100, 2) }}%

{{ $count }}

@endforeach

Total

{{ $userCount }}

@endsection