Reputation: 311
So I used XAMPP, but I had few problems with it, so my employer told me to move to homestead. I created VB and moved my laravel app folder to linked folder for homestead. I run all migrations and seeding and it successfully completed, but now I get this error: error
What could be the problem? I haven't touched the code.
Upvotes: 0
Views: 68
Reputation: 1088
In your Homestead.yaml
file you can add a php: "7.1"
key to the site settings so specify which version of PHP you'd like to use for that site. This way you can easily swap PHP versions.
Upvotes: 2