model.extendBlueprint

Triggered in Tailor\Classes\BlueprintModel.

Called when the model is extended with the blueprint, called once per model instance

Example usage:

$model->bindEvent('model.extendBlueprint', function (string $uuid) use (\October\Rain\Database\Model $model) {
    // Apply specific uuid actions
    $model->add_status_to_history = true;
});