@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