Right I've fixed it for now. I changed the following in my app.php config file: 'key' => env('Tru8BtvxLe86Bf7IqHaVkKich1xQJYaY'), to 'key' => 'Tru8BtvxLe86Bf7IqHaVkKich1xQJYaY',
I then ran "php artisan config:cache"
I assume the env() pulls the value from the .evl file which was missing? So my next question being why wouldn't this be created initially?
in config/app.php I've changed
'key' => env('key_string_32_characters'),
to
'key' => env('APP_KEY', 'key_string_32_characters'),
then run:
php artisan config:clear php artisan config:cache
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community