【PHP】Laravel APP_DEBUG is set to true while APP_ENV is not local
This could make your application vulnerable to remote execution. Read more about Ignition security.
解决:
找到.env
APP_ENV=production
改成
APP_ENV=local
–done–
InvalidArgumentException
Please provide a valid cache path.
解决:
在/storage/framework/
目录下
新建 cache
sessions
views
三个目录
–done–