Having a support enum as a value in the query builder would be nice, just like the model.
i.e.
Transaction::filter('status', '=', StatusEnum::SUCCESS)->scan();
Instead of doing this, stating the string:
Transaction::filter('status', '=', StatusEnum::SUCCESS->value)->scan();