由于我切换到新的Mac,所以我不能再使用Laravel Valet。它可以在我以前的Mac上运行。
我做了modelBuilder.Entity<Student>()
.HasOptional(s => s.Address) // Address property is optional in Student entity
.WithRequired(ad => ad.Student); // Student property is required
,brew update
等。
valet install
显示:
名称状态用户Plist dnsmasq启动了根目录/Library/LaunchDaemons/homebrew.mxcl.dnsmasq.plist mysql@5.7启动了maxime-freschard /Users/myself/Library/LaunchAgents/homebrew.mxcl.mysql@5.7.plist nginx启动了根目录/Library/LaunchDaemons/homebrew.mxcl.nginx.plist php以root开头/Library/LaunchDaemons/homebrew.mxcl.php.plist
我的.test URL不起作用。 5秒后ping会显示此错误:
$ ping foo.test
ping:无法解析foo.test:未知主机
我该怎么办?
谢谢