array_reduce
のようなものを使用できます followers
を取得した後 。
例:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
今$followers
すべてのフォロワーid
を含む s。
array_reduce
のようなものを使用できます followers
を取得した後 。
例:
$followers = array_reduce($post->followers, function ($c, $i) {
$c[] = $i->user_id;
}, []);
今$followers
すべてのフォロワーid
を含む s。