P
$users = User::....->get();
$users->map(function() use ($users) {
return $users->count()
});
- тоже самое
Size: a a a
P
P
SG
User::query()->has('followers.followers', '>', 3)->get();
SG
AE
SG
SG
SG
User::query()->has('followers', '>', 3)->get();
может быть такое хотел?SG
User::query()->has('followers.followers')->has('followers', '>', 3)->get();
AE
SG
P
ПМ
D
D
SS
ПМ
ПМ
ПМ