model.setAttribute

Triggered in October\Rain\Database\Model.

Called after the model attribute is set

Note: also triggered in October\Rain\Halcyon\Model

Example usage:

$model->bindEvent('model.setAttribute', function ((string) $key, $value) use (\October\Rain\Database\Model $model) {
    if ($key === 'not-for-you-to-touch') {
        \Log::info("{$key} has been touched and set to {$value}!")
    }
});