Skip to main content
Sometimes the property names in the array from which you’re creating a data object might be different. You can define another name for a property when it is created from an array using attributes:
Creating the data object can now be done as such:

Using Mappers

Changing all property names in a data object to snake_case in the data the object is created from can be done as such:

Input and Output Mapping

You can also use the MapName attribute when you want to combine input (see transforming data objects) and output property name mapping:

Global Mapping Strategy

It is possible to set a default name mapping strategy for all data objects in the data.php config file:

Mapping Nested Properties

You can also map nested properties using dot notation in the MapInputName attribute. This is useful when you want to extract a nested value from an array and assign it to a property in your data object:
You can create the data object from an array with nested structures:
The package has a set of default mappers available, you can find them here.