Laravel 5.6从表单输入日期并在保存到数据库之前进行验证

时间:2018-05-29 12:38:04

标签: laravel vue.js

我有一个允许用户输入日期并提交

的表单

但是,验证规则看起来有点失败。

'reportedDate'=>'required|date|date_format:Y-m-d'

<div class="form-group"> <label for="reportedDate">Reported Date</label> <input type="date" class="form-control" :class="{'is-invalid':errors.reportedDate}" placeholder="2018-05-28" name="reportedDate" v-model="list.reportedDate"> <small class="text-danger" v-if="errors.vin_no" >{{errors.reportedDate[0]}}</small> </div>

1 个答案:

答案 0 :(得分:0)

来自laravel docs

  

验证字段必须与给定格式匹配。验证字段时应使用date或date_format,而不是 BOTH

{{3}}