class User extends Model{
//设置方法名称
protected $appends = ['is_admin','type'];
//查询时 修改 字段格式或者值 【自动触发,无需调用】
public function getIsAdminAttribute()
{
return $this->attributes['title'] = 'yes';
}
//修改时 更改储存格式或者值 【自动触发,无需调用】
public function setIsAdminAttribute($value)
{
//$value 代表字段的值
$this->attributes['title'] = empty($value) ? '0' : $value;
}
protected $type = [1=>'aaa',2=>'bbb'];
public function getTypeAttribute()
{
return $this->type[$this->attributes['type']];
}
}