Voting Locations
@if(Auth::user()->hasStateRole(['State Admin'], $state->id) || Auth::user()->hasCountyRole(['County Admin'], $county->id))
Create Voting Location
@endif
@if($county->votingLocations->count() > 0)
Name |
Address |
|
@foreach($county->votingLocations as $votingLocation)
{{ $votingLocation->name ?? '' }} |
{{ $votingLocation->address_1 }}
@if($votingLocation->address_2) {{ $votingLocation->address_2 }} @endif
{{ $votingLocation->city }}, {{ $votingLocation->state }}, {{ $votingLocation->zip}}
|
View
Edit
|
@endforeach
@else
There are currently no voting locations for this county.
@endif