@extends('layouts/contentNavbarLayout') @section('title', 'Opinion Poll Details') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
Opinion Poll Details
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 $key => $option) @empty @endforelse
# Option Text Votes Actions
{{ $key + 1 }} {{ $option->option_text }} {{ $option->votes }} Edit
No options available for this poll.
@endsection