明确了如何在关于一个字段时设置和获取属性。但是如何使用属性mutator合并两个输入字段?
例如,我有publish_date
和publish_time
,我在数据库中一起插入,并希望将属性publish_date
设置为publish_date
+ publish_time
。
答案 0 :(得分:0)
您可以从模型上的attributes数组中获取其他属性。
public function setPublishDateAttribute($value)
{
$this->attributes['publish_date'] = $value + $this->attributes['publish_time'];
}