我们可以使用js,jquery等对复选框的选中值进行计数。但是没有可用的来源提供如何使用Laravel对其进行计数
答案 0 :(得分:0)
<form action="" method="post">
@csrf
<input type="checkbox" name="hobbis[]" value="programming"> prog<br>
<input type="checkbox" name="hobbis[]" value="circket"> cricket<br>
<input type="checkbox" name="hobbis[]" value="football"> football<br>
<input type="submit" value="sub">
</form>
Route::post('/store', function (Request $req) {
return count($req->hobbis);
});