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
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