我在laravel 5.6中遇到碳问题。
当从DB返回数据时,如果时间戳字段具有空值,则碳返回当前日期,即使我有protected $dates
。
published_at为空。
型号:
protected $dates = ['published_at'];
刀片:
value="{{ old('published_at', $post->published_at)}}"
我已经在Carbon get current date if variable is null上尝试了这个建议,但有任何建议吗?