The interface that showed is using @foreach method to display . Hence , i want to know how to pass only one checkbox (view) into controller.
Below is the view coding.
@foreach($articles as $article)
<tr>
<td>{{ $article->jenis_simptom}}</td>
<td style="width: 10px">
<input type="checkbox" value="{{ $article->jenis_simptom}}" name="{{ $article->id }">
</td>
</tr>
@endforeach
Thank You