@extends('layouts/contentNavbarLayout') @section('title', 'Opinion Polls List') @section('content') @if (session('success'))
| # | 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 --}} |
|
No opinion polls found!
|
|||||