Puoi usare qualcosa come array_reduce
dopo aver ricevuto followers
.
Esempio:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
Ora i $followers
contiene tutti gli id
dei follower s.
Puoi usare qualcosa come array_reduce
dopo aver ricevuto followers
.
Esempio:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
Ora i $followers
contiene tutti gli id
dei follower s.