How to convert an array from a Postgres query to array variable in Laravel?
My 
I have result var_dump from Laravel:
0 => array:1 [
"order_itemset" => "{8,11}"
]
1 => array:1 [
"order_itemset" => "{8,12}"
]
2 => array:1 [
"order_itemset" => "{17,10}"
]
]
How can I get the data and store the data to array variable?
like this
$data = [['8', '11'], ['8', '12'], ['17', '10']];
foreach?