老师,你好@JellyBool。我也遇到和@daoyi相同的问题,published_at的值永远是当前系统的时间,自己在form上面设置的时间不会写到数据库里。我检查过拼写和格式都没有发现什么问题。请问老师改如何解决呢?
blade文件
<div class="form-group">
{!! Form::label('published_at','published_at') !!}
{!! Form::input('date','published_at',date('Y-m-d'),['class'=>'form-control']) !!}
</div>
contorller文件
public function store(Request $request){
Article::create($request->all());
return redirect('/articles');
}
fillable设置
protected $fillable = ['title','content','published_at'];