Reputation: 11
This error occurred in compiled.php line 7772:
at EncryptionServiceProvider->getEncrypterForKeyAndCipher('SomeRandomString', 'AES-256-CBC') in compiled.php line 7762
at EncryptionServiceProvider->Illuminate\Encryption\{closure}(object(Application), array()) in compiled.php line 1353
at Container->build(object(Closure), array()) in compiled.php line 1309
Upvotes: 1
Views: 66
Reputation: 3182
Try
php artisan config:clear
And after that generate a new key for your application via
php artisan key:generate
Upvotes: 1