Reputation: 66
I have upgraded my laravel project to 5.6 version and can't see info about the error. I only see a blank page with Whoops, looks like something went wrong
: https.
Upvotes: 1
Views: 6679
Reputation: 931
This worked for my fresh Laravel installation version 5.6
first: rename .env.example
to .env
or create .env
file
second: Generate a key suing php artisan key:generate
third: copy the key generated and past it the .env file
ex: APP_KEY=base64:H1HZa/**********
lastly rerun php artisan serve
Upvotes: 2