Laravel 5.8: A facade root has not been set after homestead restart

后端 未结 4 1455
走了就别回头了
走了就别回头了 2021-01-06 11:30

so I\'m trying to get into Laravel and this is my first time using Vagrant, so here\'s my problem:

I\'ve worked through the Laravel Homestead introduction and set up

4条回答
  •  被撕碎了的回忆
    2021-01-06 11:47

    Homestead periodically issues "alpha" / "beta" boxes for testing, which may interfere with the vagrant box add command you run during homestead setup. If you are having issues you may run the vagrant up command and the correct box will be downloaded when Vagrant attempts to start the virtual machine.

    So skip the step vagrant box add laravel/homestead

    Try doing the following:

    vagrant destroy
    vagrant up
    

    Vagrant will download and choose the correct laravel/homestead version for you.

    Information source

提交回复
热议问题