📜  如何使用 where 关系 laravel - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:08.295000             🧑  作者: Mango

代码示例1
Event::with(["owner", "participants" => function($q) use($someId){
    $q->where('participants.IdUser', '=', 1);
    //$q->where('some other field', $someId);
}])