如何使用laravel计算选中的复选框

时间:2019-04-28 18:05:22

标签: laravel checkbox

我们可以使用js,jquery等对复选框的选中值进行计数。但是没有可用的来源提供如何使用Laravel对其进行计数

1 个答案:

答案 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>

laravel

Route::post('/store', function (Request $req) {
    return count($req->hobbis);
});