Hi again!
I am looking for the default language message file. __('this text')
Where shall I put the ```
'this text'=>'este texto',
I tried ```
resources/lang/es/messages.php
``` but then I need to qualify the text ```
__('messages.this text')
``` and the texplate is not mine ...
Hello! I think you should avoid using spaces in an array key __('messages.this text'). Try to replace for __('messages.this_text') or __('messages.this.text'). In the second case you need to have something like:
return [
'this' => [
'text' => 'Este texto'
]
];
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community