How to translate Laravel?

0

clonethisrepository link with language pack for Laravel, copied the en-BR folder for resources / lang, I changed the locale and fallback_locale to pt-BR, however my page was not translated, only the validation messages!

    
asked by anonymous 26.03.2018 / 01:10

1 answer

0

This standard package translates only the validations and messages generated by laravel.

Blade messages are not translated by default, you also have to prepare your blade to be translated.

look here in the documentation that will clarify you better link

    
28.03.2018 / 13:48