在我的播种机中,我有这个:
'route' => route('home') // should return http://localhost:8000
然而它会返回http://localhost
我的播种机只有这个问题。在其他任何地方使用route('home')
都会返回http://localhost:8000
。如何在播种机中找到正确的路线?
几年前我发现了同样的question,虽然它对Laravel 5.5不起作用。
在此先感谢您的帮助!
答案 0 :(得分:1)
尝试更改.env文件中的以下行:APP_URL=http://localhost
至APP_URL=http://localhost:8000
,然后在必要时运行php artisan config:cache