@foreach ($sortedOptions as $option)
@php ($votes = $poll->votes->where('poll_option_id', $option->id)->count())
{{ $option->text }}
:
{{ $votes }} votes
{{ $total == 0 ? 0 : round($votes / $total * 100, 2) }}% of votes
@endforeach
Total votes: {{ $total }}