@extends('layouts.app') @section('title', "Results for '" . $poll->question . "'") @section('content') @if ($voted)
Your vote has been recorded!
@endif @if($poll->results_visible)
@php ($total = $poll->votes->count()) @foreach ($poll->options->sortByDesc(function($option) use($poll) { return $poll->votes->where('poll_option_id', $option->id)->count(); }) as $option) @php ($votes = $poll->votes->where('poll_option_id', $option->id)->count())
{{ $option->text }} {{ $votes }} votes
@endforeach
Total votes: {{ $total }}
TODO: Put a pie chart here.
@else
Results for this poll are hidden until the poll is closed.
@endif @endsection