Eloquent way:
$profiles = Profile::whereHas('projects', function ($q) {
$q->has('pictures', '>', 1);
})->get();
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community