Form Demo
When working with decimals coming from DB and displaying it both in views and forms, we want to check how nice the value objects work here for us.
For this to work directly with the object for all our decimal columns we mapped them to the Type class:
\Cake\Database\TypeFactory::map(
'decimal',
'CakeDecimal\Database\Type\DecimalObjectType',
);
We then pull a record from DB. If we echo the `balance` field:
0.00
The `extra` field is first empty (null):
Now, lets add something to it via edit form