Laravel 5.5:seeder中的route()函数返回错误的路由(localhost / not localhost:8000 /)

时间:2018-03-02 22:18:01

标签: php laravel

在我的播种机中,我有这个:

'route' => route('home') // should return http://localhost:8000

然而它会返回http://localhost

我的播种机只有这个问题。在其他任何地方使用route('home')都会返回http://localhost:8000。如何在播种机中找到正确的路线? 几年前我发现了同样的question,虽然它对Laravel 5.5不起作用。 在此先感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

尝试更改.env文件中的以下行:APP_URL=http://localhostAPP_URL=http://localhost:8000,然后在必要时运行php artisan config:cache