Hi everyone!
Consider a lang resources tree like this one:
lang
en
personas
index.php
fr
personas
index.php
or this other one:
lang
personas
en
index.php
fr
index.php
None of these tree seem to work with none ofthese Blade template instructions:
{{ __('personas\index.title') }}
{{ __('personas/index.title') }}
{{ __('personas.index.title') }}
Indeed, I face the following problem: personas\index.title, for example, is shown in the browser, instead of the value indicated either in English, or French.
How could I make it work please?