Laravel日期输入字段默认时间值

时间:2016-07-25 14:02:34

标签: php laravel php-carbon

我正在尝试在输入字段中显示默认时间值。出于某种原因,当前时间显示在我的源代码中,但不会显示在我的视图中。

我的表格:

<div class="form-group">
  {!! Form::label('published_at', 'Publish On') !!}
  {!! Form::input('date','published_at', Carbon\Carbon::now()->format('H:i'), ['class' => 'form-control']) !!}
</div>

源码:

<div class="form-group"> <label for="published_at">Publish On</label> 
 <input class="form-control" name="published_at" type="date" value="15:58" id="published_at"> 
</div>

这里有什么问题?我想知道当前的时间和日期。

0 个答案:

没有答案