@include('head') @include('header')

{{ $poll->question }}

@if(session('success'))
{{ session('success') }}
@endif
@csrf
@foreach ($poll->options as $option) @endforeach

Tendances des sondages


{{ $poll->question }}
@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 }}%)
{{ $percentage }}%
@endforeach
@include('subscribe') @include('footer')