Reputation: 73
Hi all how to get selected radio button value. I want to store values on my table where selected radio button.
My Controller code passing to View $result
$result = DB::table('table')
->where('name', $name)
->where('code', $code)
->get();
return View::make('home.search_result')
->with('result', $result);
In my view code I had radio button.
{{ Form::open(array('action' => 'BookingController@postValue', 'class'=>'well', 'method' => 'GET')) }}
<table id="search" class="table table-striped table-hover">
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Code</th>
</tr>
</thead>
<tbody>
@foreach($result as $result)
<tr class="success">
<td>{{ Form::radio('result') }}
<td>{{ $result->name}}</td>
<td>{{ $result->code}}</td>
</tr>
@endforeach
</tfoot>
</table>
{{ Form::submit('Add', array('class' => 'btn btn-info')) }}
{{ Form::close() }}
So I try to pass chechked radio button value to my postValue function when I click Add button.
Upvotes: 6
Views: 28621
Reputation: 1475
You need to give a name to the radio button.
Normal HTML : <input name="sex" type="radio" value="male">
Laravel : {{ Form::radio('sex', 'male') }}
Form::radio('name','value');
Laravel gets parameter for name and value.
Upvotes: 3
Reputation: 18665
You need to give the radio button a value. All you've given it is a name.
<td>{{ Form::radio('result', $result->code) }}
Then in your controller that processes the form you can grab the value.
$result = Input::get('result');
Upvotes: 9