Můžete použít něco jako array_reduce
poté, co získáte followers
.
Příklad:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
Nyní $followers
obsahovat všechny sledující id
s.
Můžete použít něco jako array_reduce
poté, co získáte followers
.
Příklad:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
Nyní $followers
obsahovat všechny sledující id
s.