为了正确验证,我必须将我拥有的所有表单字段重写到 Laravel4,主要原因是我需要将 Input::old 添加到所有字段。
到目前为止,它在文本、文本区域和复选框方面做得很好。但我不知道如何处理日历数据。它是 Datepicker,一个非常不错的 JQuery 插件:https ://github.com/eternicode/bootstrap-datepicker 有两个字段,一个用于到达,另一个用于传出。
这是正常工作的html:
<div class="input-append date ">
<p>
<label><span><i class="icon-calendar"></i></span> Arrival Date</label>
<input type="text" name="arrival" class="datepicker" data-date-format="dd/mm/yyyy" id="checkin" placeholder="click here"/>
</p>
</div>
<div class="input-append date">
<p>
<label><span><i class="icon-calendar"></i></span> Outgoing Date</label>
<input type="text" name="outgoing" class="datepicker" data-date-format="dd/mm/yyyy" id="checkout" placeholder="click here"/>
</p>
</div>
我怎么能在 Laravel4 中写这个?如果由于某种原因不可能不是什么大问题,但我可以添加 Input::old('arrival') 和 Input::old('outgoing') 非常重要。有人知道我该怎么做吗?
非常感谢你!