Voters Table
@csrf
@foreach ($voters as $voter) @endforeach
Name Email Status Actions
{{ $voter->name }} {{ $voter->email }} @if ($voter->status === 'Voted') Voted @else Not Voted @endif
@include('voters.components.modal')