我有一个名为reservations的表,它包含room_id和person_id 我想做这样的事情
Reservation::find($id)->with(['person','room'])->get()
所以它会返回带有该ID的所有预订信息,包括个人信息和房间信息
任何帮助?
答案 0 :(得分:0)
return Reservation::with("The table that contains the id")->find(id of record that looking for);