您也可以在模型上设置Mutator。
public function setPublishedAt($value){ $this->attributes['published_at'] = strtotime($value);}转换为时间戳
$model -> setPublishedAt('2015-08-26'); // 1440572400或者您可以使用将日期转换为时间戳
strtotime
strtotime —将任何英语文本日期时间描述解析为Unix时间戳
希望能有所帮助。

您也可以在模型上设置Mutator。
public function setPublishedAt($value){ $this->attributes['published_at'] = strtotime($value);}转换为时间戳
$model -> setPublishedAt('2015-08-26'); // 1440572400或者您可以使用将日期转换为时间戳
strtotime
strtotime —将任何英语文本日期时间描述解析为Unix时间戳
希望能有所帮助。