@extends('layouts.app') @section('title', $poll->question) @php $type = $poll->allow_multiple_answers ? "checkbox" : "radio"; @endphp @section('content')
@foreach ($poll->options as $option)
@endforeach
@endsection