Hello folks,
i'm using PhalconPHP with MongoDB and find some kind of issue, i think.
I have a collection like this:
someKey: {
anotherKey:"Hello"
},
normalKey:"World!"
When i try to access the "anotherKey" with Volt, it just don't works...:
<h1>
{{myControllerVar.someKey.anotherKey}}, {{myControllerVar.normalKey}}
</h1>
The "normalKey" appears normally but "anotherKey" don't. Is it a bug? Or there is another way to access subkeys in Volt's engine?