@extends('layouts.app') @section('content')

{{ $survey->title }}

Total Votos: {{ $survey->votes_count }}
@foreach($survey->candidates->sortByDesc('votes_count') as $candidate) @php $percentage = $survey->votes_count > 0 ? round(($candidate->votes_count / $survey->votes_count) * 100, 1) : 0; @endphp
{{ substr($candidate->name, 0, 1) }}
{{ $candidate->name }} @if($candidate->role) ({{ $candidate->role }}) @endif
{{ $percentage }}% {{ $candidate->votes_count }} votos
@endforeach
@endsection