I need to get the value of this checkbox but nothing is working.
@foreach ($options->getGenresEventos() as $agenda)
<input type="checkbox" name="cat" id="cat" class="checkbox" value="{{strtolower($agenda)}}" data-bind="checked: params.genres"/> {{ $agenda }}<br><br>
@endforeach
I did so
<input type="hidden" name="city" value="@if(Input::get('genre')){{Input::get('genre')}} @else {{Request::('cat')}} @endif" />
Thanks for any help