I have array named data in that i have sub array as place_id,when I print place_id from data array as
dd($data['place_id'])
It gives me result as
array:1 [
0 => "7"
1 => "3"
]
I want values to be of type int as follows:
array:1 [
0 => 7
1 => 3
]
How will I get this result ?