标签: php laravel eloquent attributes
想象一下,我想像这样修改用户模型中的“名称”属性:
public function getmakeAttribute() { return "modified".$this->attributes['name']; }
请不要理会原因,但是想像一下我也想修改更多的属性,例如:年龄,性别等。我应该为每个属性分别编写getageAttribute()和getGenderAttribute()函数吗?还是有更好的方法来修改多个属性?只喜欢一个功能或类似功能。
getageAttribute()
getGenderAttribute()