@extends('partials.default') @section('content')

Voting

@if($event->voting_status=='0') @elseif($event->voting_status=='1') @elseif($event->voting_status=='2')

Voting Stopped

@else

Results Annouced

@endif
@foreach($members as $p) @php if($p->status=='1'){ $status = 'Active'; }elseif($p->status=='0'){ $status = 'Pending'; }else{ $status = 'In-Active'; } @endphp @endforeach()
# Name Email Role Status
{{$loop->iteration}} {{$p->name}} {{$p->email}} {{$p->ec_d?$p->ec_d->status:'-'}} {{$status}}
@endsection