Here is what I do:
'en.auth-message': require('../../../resources/lang/en/auth/message.php'),and then
lang.get('auth-message.translation')which works. However doing this:
en.auth/message': require('../../../resources/lang/en/auth/message.php'),and then
lang.get('auth/message.translation') or laravel convention
lang.get('auth.message.translation')` does not translate
Any indeas on how to best deal with this?