@extends('layouts.app') @section('content')
List of Emails that Have Voted for {{ $candidate->name }}
Total Votes: {{ $totalVotes }} | Legitimate: {{ $legitimateVotes }} | Bot Votes: {{ $botVotes }}
@foreach($votes as $vote) @endforeach
Email Address Created At Updated At Bot Vote
{{ $vote->email }} {{ $vote->created_at->format('m/d/Y h:i A') }} {{ $vote->updated_at->format('m/d/Y h:i A') }} @if($vote->isBotVote()) YES @else NO @endif
{{ $votes->withQueryString()->links() }}
@endsection