@extends('backend.layouts.master') @section('title') Bulletin @endsection @section('body') @endsection @section('content')

{{ $election->name }} @if ($election->status === 'active') ACTIVE @elseif ($election->status === 'closed') FERMÉE @elseif ($election->status === 'draft') BROUILLON @endif

Choisissez @if ($election->min_choices === $election->max_choices) exactement {{ $election->max_choices }} @else entre {{ $election->min_choices }} et {{ $election->max_choices }} @endif candidat{{ $election->max_choices > 1 ? 's' : '' }}

{{--
--}}
@foreach ($election->candidates as $candidate)
@if ($candidate->image) @endif
{{ $candidate->name }}
@endforeach
{{--
@foreach ($election->candidates as $candidate)
@if ($candidate->image) @endif
{{ $candidate->name }}
@endforeach
--}} @if ($election->status === 'active')
@else
Cette élection n'est pas active.
@endif
@endsection @section('css') @endsection @section('scripts') @endsection