I have data array :
Array
(
[0] => Illuminate\Support\Collection Object
(
[items:protected] => Array
(
[0] => stdClass Object
(
[product_id] => 780
)
[1] => stdClass Object
(
[product_id] => 789
)
[2] => stdClass Object
(
[product_id] => 800
)
[3] => stdClass Object
(
[product_id] => 769
)
)
)
)
How can I get data only value on array?
output needed $data = '780','789','800','769';