@php
$totalVotes = $poll->options->sum('votes');
@endphp
@foreach($poll->options as $option)
@php
$percentage = $totalVotes > 0 ? round(($option->votes / $totalVotes) * 100) : 0;
@endphp
{{ $option->text }}
{{ $option->votes }} voix ({{ $percentage }}%)
@endforeach