Question: {{ $poll->question }}
Status:
@if($poll->is_active)
Active
@else
Inactive
@endif
Start Date: {{ $poll->starts_at ? \Carbon\Carbon::parse($poll->starts_at)->format('d M Y') : 'N/A' }}
End Date: {{ $poll->ends_at ? \Carbon\Carbon::parse($poll->ends_at)->format('d M Y') : 'N/A' }}
Options:
@forelse ($poll->options as $option)
{{ $option->option_text }}
Votes: {{ $option->votes }}
@empty
No options available for this poll yet.
@endforelse