@extends('layout.default') @section('title') Poll Results - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('page', 'page__poll-admin--show') @section('main')

{{ __('poll.results') }}: {{ $poll->title }}

@php($total = $poll->options->sum('votes')) @foreach ($poll->options as $option)

{{ \number_format($total === 0 ? 0 : (100 * $option->votes) / $total, 1) }}% - {{ $option->votes }} {{ $option->votes === 1 ? __('poll.vote') : __('poll.votes') }}

@endforeach
@endsection