在Laravel的输入标签中显示当前datetime-local


Show current datetime-local in input tag in Laravel

我想用dateTime-local格式的当前日期时间填充输入标记在html.blade.php文件。我想这样写:

<input type="datetime-local"
       autocomplete="on"
       id="created_date"
       name="created_date"
       class="form-control"
       value="{{currentDateTime()}}" >

您可以在value参数

中使用这样的内容
<input type="text" value="{{Carbon'Carbon::now()->format('Y-m-d')."T".Carbon'Carbon::now()->format('H:i')}}" />