For some reason i can't loop through this array with PHP. I want too loops through and echo title.
This is the array
Array (
[data] => Array
    (
        [0] => Array
            (
                [id] => 1
                [company_id] => 1
                [title] => Software Developer
            )
        [1] => Array
            (
                [id] => 2
                [company_id] => 2
                [title] => Accountant
            )
        [2] => Array
            (
                [id] => 3
                [company_id] => 3
                [title] => Insurance salesman
            )
    )
)
This is my code
    foreach ($positions as $position) {
     echo $position->title;
}
 
     
     
    