I have a table in it there are checkboxes I need that on those users on which the checkbox is selected their id was transferred
my form
<input type="submit" form="qwe">
<form action="{{URL::to('othet_nn')}}" method="get" id="qwe">
<input type="checkbox" name="id">
</form>
my controller
public function chek(){
dd($_GET);
return view('admin.pages.othet_test');
}
I need to be passed the id of those users who had a check mark in the checkbox