如何使用来自另一个表的数据从表中获取记录的所有数据

时间:2018-06-15 22:49:21

标签: laravel-5

我有一个名为reservations的表,它包含room_id和person_id 我想做这样的事情

Reservation::find($id)->with(['person','room'])->get()

所以它会返回带有该ID的所有预订信息,包括个人信息和房间信息

任何帮助?

1 个答案:

答案 0 :(得分:0)

return Reservation::with("The table that contains the id")->find(id of record that looking for);