@extends('layouts/contentNavbarLayout') @section('title', 'Opinion Poll Details') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
Opinion Poll: {{ $poll->question }}
Add Option
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
@endsection