Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何检查复选框 laravel 4 的选中属性,我尝试
checkbox =>{{Form::checkbox('same_as_billing', false)}} @if(same_as_billing==true) ... @endif
但不起作用
第三个参数:
{{Form::checkbox('same_as_billing', 1, true)}}
第二个参数是值,默认为 1。