::where() 正在链接查询构建器,但是您永远不会执行请求.
::where()
::where('id', $id)->first(); //if you only want the first result //shorthand would be ::find($id);
或者,如果你想要每场比赛:
::where('id', $id)->get();