@extends('layouts.app') @push('pageTitle') {{ __('labels.survey_results') }} @endpush @section('content')
@include('components.common.flush-message')

{{ __('labels.results_for', ['title' => $survey->title]) }}

{{ __('labels.total_votes') }}: {{ $totalVotes }}

@foreach($optionCounts as $opt)
{{ $opt['label'] }}
{{ $opt['count'] }}{{ __('labels.votes') }}({{ $opt['percentage'] }}%)
@endforeach {{ __('labels.back') }}
@endsection