Du kan använda något som array_reduce
efter att du fått followers
.
Exempel:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
Nu är $followers
innehålla alla följare id
s.
Du kan använda något som array_reduce
efter att du fått followers
.
Exempel:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
Nu är $followers
innehålla alla följare id
s.