我正在尝试将具有多个复选框值的表单提交到我的 user_answer
列
我的控制器
public function store(Request $request)
{
$input = $request->all();
//dd($input);
Answer::create($input);
return back()->with('added', 'Answer has been submitted');
}
我的观点
@elseif($question->question_type == "$check_a" )
<div>
<span class="question-title">{!! $question->question !!}</span>
<ul class="question-choices">
<li>
<label>
{!! Form::checkbox('user_answer[]', 'A'); !!} {!! $question->a !!}
</label>
</li>
<li>
<label>
{!! Form::checkbox('user_answer[]', 'B'); !!} {!! $question->b !!}
</label>
</li>
{{--Show if the question has a value C --}}
@if (!empty($question->c))
<li>
<label>
{!! Form::checkbox('user_answer[]', 'C'); !!} {!! $question->c !!}
</label>
</li>
@else
{{--Hide the checkbox from the Assessment--}}
@endif
2条答案
按热度按时间ljsrvy3e1#
我最终走了这条路,并使它发挥了作用。
z0qdvdin2#
我想你应该试试这个
控制器