@extends('layouts.app') @section('title', 'Votes') @section('content')
Overview
@foreach($votes as $vote) @endforeach
Question Start End Status Only for ATC Active Only for VAT{{ Config::get('app.owner_short') }} members
{{ $vote->question }} {{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $vote->created_at)->toEuropeanDateTime() }} {{ \Carbon\Carbon::create($vote->end_at)->toEuropeanDateTime() }} {{ $vote->closed ? "Closed" : "Accepting answers" }}
@endsection