📅  最后修改于: 2022-03-11 14:54:36.577000             🧑  作者: Mango
protected static $logAttributes = [];
public static function boot()
{
parent::boot();
static::saving(function (Model $model) {
static::$logAttributes = array_keys($model->getDirty());
});
}