@extends('layouts.app') @section('content')
← Назад

Сессия #{{ $round->id }}

Диапазон: 1–{{ $round->max_score }} | Участников: {{ $round->votes->count() }} / {{ $round->max_voters }}

Средняя оценка: {{ number_format($round->average_score, 2) }}

@if($round->votes->isEmpty())

Пока никто не проголосовал.

@else

Участники:

@foreach($round->votes as $vote)
{{ $vote->name }} {{ $vote->score }}
@endforeach
@endif
@endsection