gpt4 book ai didi

php - laravel DB,获取表中的所有数据

转载 作者:行者123 更新时间:2023-11-29 21:02:26 26 4
gpt4 key购买 nike

欢迎,我尝试通过“with”组合laravel中多个表的数据我目前有这样的事情,我不知道如何用第二次调用来做到这一点是表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 配置文件插入到“??”在 msg_profiles 中?

最佳答案

$profil->with('msg_profils') 就足够了,因为 Laravel 自动匹配外键。

关于php - laravel DB,获取表中的所有数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37099500/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com