I want to save my results in the database but im getting an error exception.
In my view I have a radio button(array) that gets the result of each student which is present,late,absent,others
Here's my view
<td>{{ $users->student_id }} </td>
<td>{{ $users->student_firstname }} {{ $users->student_lastname }}</td>
<td>{{ Form::radio('result['.$users->student_id.']', 'present' , true) }}</td>
<td>{{ Form::radio('result['.$users->student_id.']', 'late' ) }}</td>
<td>{{ Form::radio('result['.$users->student_id.']', 'absent') }}</td>
<td>{{ Form::radio('result['.$users->student_id.']', 'others') }}</td>
Here's my controller
$attendance = new Attendances();
$attendance->status = Input::get('result');
$attendance->comment = Input::get('comment');
$attendance->save();
I had a similar error, where using
sets a non-existing column value, so on calling
afterwards, it will throw that error
Your radio input
result
will return an array, due to the naming convention you have chosen.If you wish to save the singular value of the input
result
, use the following format.View code:
If you are expecting multiple values in an array, then you should be looping through the code, and saving each individually:
Controller Code:
Suggestion:
If you wish to save several student's information on the same form, the suggestion below will work great.
View Code:
Controller Code for saving