On Laravel 6, using @lang directive will throw ViewException. (Method Illuminate\Translation\Translator::getFromJson does not exist).
Because @lang directive renders as app('translator')->getFromJson('...') which was removed in this update.
Simply try to use @lang directive with not existing key.
Try tun run php artisan view:clear - it should solve the problem.
Most helpful comment
Try tun run
php artisan view:clear- it should solve the problem.