Laravel - Repopulate checkbox to ticked or unticked

元气小坏坏 提交于 2019-12-12 01:59:28

问题


In Laravel, if validation failed, it goes back to a same form page. How to repopulate a checkbox to ticked or unticked?

By default, it should be unticked when loading on the page for the first time.

{{ Form::checkbox('custom_address', false, 
   Input::old('custom_address'), array('class' => 'test')); }}

回答1:


You need to set a value for your checkbox, otherwise the Input class will always have it empty / unchecked.

Give the checkbox a value of 1, then it should work.

{{ Form::checkbox('custom_address', 1, Input::old('custom_address'), array('class' => 'test')); }}



回答2:


just use a conditional.

@if(!empty(Input::old('custom_adress')))

{{ Form::checkbox('custom_address', true, 
Input::old('custom_address'), array('class' => 'test')); }}

@else

{{ Form::checkbox('custom_address', false, 
Input::old('custom_address'), array('class' => 'test')); }}

@endif


来源:https://stackoverflow.com/questions/26869262/laravel-repopulate-checkbox-to-ticked-or-unticked

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!