I am trying to implement multi language support on laravel. I have other language like korean and spanish inside ko.jso and es.json files. BUt the problem is if I include en.json. It won't be detected by laravel. It uses the default string found in my code instead of using the value inside the en.json file. How do I force laravel to use the en.json file on my translation folder?
On my translation en.json file it has something like this.
{"2117-Company Information": "Company Information"}
on my code I did it like this:
__('2117-Company Information')
I outputed the current language that I am using, using this code
dd(App::getLocale()); // Output "eng"