@extends('layouts/contentNavbarLayout') @section('title', 'Opinion Polls List') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
Opinion Polls List
Create Opinion Poll
@forelse ($opinionPolls as $key => $poll) @empty @endforelse
# Question Status Start Date End Date Actions
{{ $key + 1 }} {{ $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' }} Edit View {{-- View Options --}}
@endsection