Make survey at laravel 5.4 and MySQL
PHP Snippet 1:
<a class="btn btn-primary" href="{{action('surveyController@update',$ans->id)}}">Vote</a>
PHP Snippet 2:
<tr>
<th>Voted by 0 People </th>
<th>{{$show->title}}</th>
<th>Question ID: {{$show->id}}</th>
<th>Vote</th>
</tr>
@foreach($show->survey_questions as $ans)
<tr>
<td><input type="radio" name="check[]"></td>
<td>{{$ans['answer']}}</td>
<td>{{$ans['id']}}:</td>
<td><a class="btn btn-primary" href="{{action('surveyController@update',$ans->id)}}">Vote</a></td>
</tr>
@endforeach