Whoops, looks like something went wrong :(

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.

enter image description here

Upvotes: 1

Views: 6679

Answers (2)

Eyayu Tefera
Eyayu Tefera

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

Shame on me I forgot to enable debug APP_DEBUG=true

Upvotes: 2

Related Questions