I have collection:
$categories = $post->categories;
I get this:
#items: array:1 [▼
0 => Category {#999 ▶}
1 => Category {#999 ▶}
]
I need get from category id.
I try this:
$categories = array_column('id', $post->categories);
But with collections array_column not working. How I can do this?
$categories = array_column($post->categories,'id');? you just misplaced the arguments