@extends('layouts.meeting')
@section('content-meeting')
@if (isset($voting->closed_at))
{{-- --}}
VOTAÇÃO ENCERRADA
@endif
@if (isset($voting->ata_id))
@if ($voting->ata_id == null)
@if ($voting->advice_id == 0)
Votação - {{ $voting->getName()[0] }}
@else
{!! $voting->advice->commission->name . ' - ' !!} {{ $voting->getNameAdvice()[0] }}
@endif
@else
ATA - {{ $voting->getAta() }}
@endif
@endif
@foreach ($meeting->assemblyman()->orderBy('short_name')->get() as $item)
@if ($item->id > 0)
-
-
-
-
@endif
@endforeach
@if (!isset($voting->closed_at))
@endif
@endsection