For example Reset Password Email is not translated.
In Laravel 5.8 we have lines like this:
->subject(Lang::getFromJson('Reset Password Notification'))
And it return always Reset Password Notification.
But when i remove getFromJson from library and original method is used, then translation works properly.
For example Reset Password Email is not translated. In Laravel 5.8 we have lines like this:
->subject(Lang::getFromJson('Reset Password Notification'))
And it return always Reset Password Notification.But when i remove getFromJson from library and original method is used, then translation works properly.