Skip to content
Advertisement

How to make Eloquent model attribute updatable only through public methods?

I want to prevent a model attribute from being directly set from an outside source without going through setters that control the logic.

JavaScript

This should not be allowed:

JavaScript

You must use some kind of accessor or setter method:

JavaScript

But I don’t care how you get the value:

JavaScript

How do I enforce that the only way to update this attribute would be through specific methods that dictate some additional logic? In a sense, make a model attribute private or protected.

I want to do this separately and/or before the model data is persisted to the database.

Advertisement

Answer

You can override the set..Attribute() function for each member variable you want to protect, or you could potentially perform your validation inside the set..Attribute() function rather then having separate public methods.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement