我有一个空格和一个兴趣表。
我目前能够获取另存为$ spaceList的空间ID的列表,但我希望我的$ query变量从$ spaceList变量中检索与space_id外键与space_id之一匹配的兴趣列表。
public function index() {
$user_id = auth()->user()->id;
$user = User::find($user_id);
$spaceList = Space::where('user_id', $user_id)->pluck('space_id')->toArray();
$query = Interest::where('space_id', $spaceList);
$interests = $query->get();
return view('dashboard')->with('space', $user->space)->with('interest', $interests);
}
谢谢,我已经很久了。
HUH函数
临摹微笑