Releases: rmariuzzo/Laravel-JS-Localization
Releases · rmariuzzo/Laravel-JS-Localization
1.2.0
Support for nested messages
This release provides support for nested messages.
Now you can:
Lang.get('messages.family.children.son');
That will return the proper messages that was stored in lang/en/messages.php
with the following content:
return array(
"family" => array(
"children" => array(
"son" => "I am the son",
)
)
)
Happy coding!
First release
This is the firs release with basic functionality.