@forelse ($polls as $poll)

{{ $poll->title }}

@foreach ($poll->options as $option)
{{ $option->name }} ({{ $option->votes->count() }})
@endforeach
@empty
No polls available.
@endforelse