Akhil Thayyil
0
Q:

how to use where relationship laravel

Event::whereHas('participants', function ($query) {
    $query->where('IDUser', '=', 1);
})->get();
4
$account = App\Account::find(10);

$user->account()->associate($account);

$user->save();
2
Event::with(["owner", "participants" => function($q) use($someId){
    $q->where('participants.IdUser', '=', 1);
    //$q->where('some other field', $someId);
}])
0

New to Communities?

Join the community