这是我模特中的My mutator ..
protected $dates = ['closer_date','final_submission_date','start_date'];
这是一个我想在数据库中检索记录的字段中设置日期的字段。
<input class="form-control" type="date" name="start_date" value="{{ $topic->start_date}}" id = "start_date" onkeyup = "Validate(this)" required min=<?php
echo date('Y-m-d');
?> />
答案 0 :(得分:2)
使用format()
设置格式
{{ $topic->start_date->format('Y-m-d')}}
你的代码中的
<input class="form-control" type="date" name="start_date" value="{{ $topic->start_date->format('Y-m-d)}}" id = "start_date" onkeyup = "Validate(this)" required min=<?php
echo date('Y-m-d');
?> />
希望这有帮助