Laravel 5.5 框架安装后显示“Whoops, looks like something went wrong”错误的解决方法
1.开启调试模式
打开项目目录下config/app.php修改:
'debug' => env('APP_DEBUG', true),
原本为
'debug' => env('APP_DEBUG', false),
2.修改根目录.env.example文件为.env
3.执行命令生成key
php artisan key:generate
4.复制key到config/app.php文件
'key' => env('APP_KEY','YourKeyString'),
然后再刷新页面 你会看到错误解决。