欢迎, 我尝试将laravel中的几个表中的数据与"和#34;结合起来。我目前有这样的事情,我不知道怎么做第二次电话是表1的主要关键
$profil = Profil::where('ghost', Chat::GHOST_NO);
$profil->with(['avatar_profils' => function($query) {
$query->where('id_profil', '=', Session::get('profil')->id);
}]);
$profil->with(['msg_profils' => function($query) {
$query->where('id_profil', '=', ??);
}]);
如何将查询中的id profil插入" ??"在msg_profils?
答案 0 :(得分:0)
$profil->with('msg_profils')
就足够了,因为Laravel会自动匹配外键。