Solution:
You cannot override trait properties in the same class as the PHP documentation suggests.
Laravel, however, is asking you to override this in a child class (your model class which extends the Eloquent model class and the trait is included in the Eloquent model class, not your model class). This is a perfectly valid thing to do!