Not entirely sure what you are asking, and what you are doing with those checkboxes.
hi you just mention your form action in specific controller and check the all value get in controller
<form method="post" action="test/savedata">in route.php
Route::post('test/savedata','someController@somemethod');
in controller.php public function somemetod(Request $request) { $req=$request->all(); print_r($req);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community