## Reading values.
$request->data('Post.title');
When reading values you will get null for keys/values that do not exist.
## Writing values
$request->data('Post.title', 'New post!');
You can write to any value, even paths/keys that do not exist, and the arrays
will be created for you.