I use different folder that the default resources/langs folder (I need it to for some packages).
using this line in the appServiceProvider
app()->useLangPath(base_path('lang'));
and it works fine and good ever since.
but after I needed recaptcha I installed this package https://github.com/anhskohbo/no-captcha and all translations got back to resources/lang as if the code in the app service provider doesn't work
to double check uninstalled the packages. Everything got back ok.
Installed another recaptcha package https://github.com/biscolab/laravel-recaptcha and the same thing returned.
Why is there a conflict in the code app()->useLangPath(base_path('lang')); and recaptcha packages???
I really need recaptch and to use different lang folder (while the resources/lang also exists)
Thanks