我想将日期设置到我的 html 日期字段中。我在 Laravel 中使用了 mutator,现在如何在日期字段中设置日期来编辑记录?
I want to set date into my html date field. I have used mutator in Laravel, Now how can I set date in the date field to edit a record?
这是我模型中的修改器..
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');
?> />
使用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');
?> />
希望对您有所帮助
这是我模型中的修改器..
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');
?> />
使用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');
?> />
希望对您有所帮助