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.
我正在将现有的 L3 项目移植到 L4 中。
在我的登录视图中,我习惯于{{ Form::checkbox('remember', 'remember', Input::had('remember')) }}重新填充记住我按钮的状态。
{{ Form::checkbox('remember', 'remember', Input::had('remember')) }}
但是,在 L4 中,不推荐使用 Input::had。那么 的替代品是Input::had()什么?或者还有另一种更性感的方式来重新填充复选框的状态?
Input::had()
利用
{{ Form::checkbox('remember', 'remember', null !== Input::old('remember')) }}