I just begin to use Laravel 5.4, In the login.blade.php i have
I don\'t like to put plain text in html code, is there a solution to make all the texts in s
Try this!
{{ @lang('messages.login') }}
Now Add login key with it's value under language file as below
return['login'=>'Login']; // write inside messages file
and Set your APP Config Local Variable Like 'en','nl','us'
'en','nl','us'
App::setLocale(language name); like 'en','nl','us'