我有一个允许用户输入日期并提交
的表单但是,验证规则看起来有点失败。
'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>
答案 0 :(得分:0)
来自laravel docs
验证字段必须与给定格式匹配。验证字段时应使用date或date_format,而不是 BOTH 。
{{3}}