Размер файла: 0.98Kb
@extends('layout')
@section('title')
Голосования {{ $vote->title }}
@stop
@section('content')
<h1>Голосования {{ $vote->title }}</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="fas fa-home"></i></a></li>
<li class="breadcrumb-item"><a href="/votes">Голосования</a></li>
<li class="breadcrumb-item"><a href="/votes/{{ $vote->id }}">{{ $vote->title }}</a></li>
<li class="breadcrumb-item active">Голосования</li>
</ol>
</nav>
<i class="fa fa-chart-bar"></i> Голосов: {{ $vote->count }}<br><br>
@if ($voters->isNotEmpty())
@foreach ($voters as $voter)
{!! $voter->user->getGender() !!} {!! $voter->user->getProfile() !!} ({{ dateFixed($voter->created_at) }})<br>
@endforeach
@else
{!! showError('В голосовании никто не участвовал!') !!}
@endif
@stop