Hi.
I'd like to make a "baseModel" with some property like 'createdAt', 'id' and 'updatedAt'. But on function 'beforeValidationOnCreate' of my Users model, when i call the parent::beforeValidationOnCreate to update my date fields I got an error 'The method 'getCreatedAt' doesn't exist on model 'App\Models\Users'.
Is it even possible to do a baseModel ?
If not I'll change my baseModel to make a trait instead.