@extends('layouts/contentNavbarLayout') @section('title', 'Opinion Poll Details') @section('content') @if (session('success'))
{{ $poll->question }}
@if($poll->is_active) Active @else Inactive @endif
{{ $poll->starts_at ? \Carbon\Carbon::parse($poll->starts_at)->format('d M Y') : 'N/A' }}
{{ $poll->ends_at ? \Carbon\Carbon::parse($poll->ends_at)->format('d M Y') : 'N/A' }}
| # | Option Text | Votes | Actions |
|---|---|---|---|
| {{ $key + 1 }} | {{ $option->option_text }} | {{ $option->votes }} | Edit |
|
No options available for this poll.
|
|||