Support the ongoing development of Laravel.io →
posted 8 years ago
Eloquent
Last updated 1 year ago.
0

Do you mean something like this?

$users = Users::whereHas('images', function ($q) { 
$q->where('isprofile', 1);
})->get();

get all users who have profile images.

0

Hi rickshawhobo,

How do i get user's profile image for every user?

0
foreach ($users as $user) {

$profileImage = $user->images()->where('isprofile', 1)->first();
}
0

Sign in to participate in this thread!

Eventy

Your banner here too?

kchapagain kchapagain Joined 27 May 2015

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.