@extends('layout.default') @section('title') Polls - {{ config('other.title') }} @endsection @section('breadcrumbs') @endsection @section('page', 'page__poll-admin--index') @section('main')

{{ __('poll.poll') }}

{{ __('common.add') }}
@foreach ($polls as $poll) @endforeach
{{ __('poll.title') }} {{ __('common.date') }} {{ __('forum.state') }} {{ __('common.action') }}
{{ $poll->title }} @if ($poll->expires_at?->isPast()) {{ __('forum.closed') }} @else {{ __('forum.open') }} @endif
  • {{ __('common.view') }}
  • {{ __('common.edit') }}
  • @csrf @method('DELETE')
  • @endsection