保存复选框的开/关值-Laravel

时间:2019-04-30 05:57:01

标签: laravel

我的一个表单字段需要能够从复选框字段中保存布尔值。选中=真,取消选中=假。如何设置输入字段?

<input type="checkbox" class="custom-control-input" id="user_private_account" @if($usersetting->user_private_account == true) checked @endif >

2 个答案:

答案 0 :(得分:1)

尝试一下,

<input type="checkbox" class="custom-control-input" id="user_private_account" @if($usersetting->user_private_account == true) checked @endif name="user_private_account">

在您的Contoller中

 $object->required = $request->user_private_account ? 1 : 0;

希望这会有所帮助:)

答案 1 :(得分:0)

做简单:

$object->required = isset($request->user_private_account)

因为isset()仅返回truefalse