Support the ongoing development of Laravel.io →
Database Eloquent
Last updated 1 year ago.
0
$user_id = 1;
$api_account_id = 2;

$items = Item::with('images')->whereHas('user' => function($query) use($user_id, $api_account_id) {
    $query->where('user_id', '=', $user_id);
    $query->where('api_account_id', '=', $api_account_id);
})->get();

untested

Last updated 1 year ago.
0

Did you find a solution for this?

0

Sign in to participate in this thread!

Eventy

Your banner here too?

geocine geocine Joined 10 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.