After uploading a excel file ,I get values in array given below
array:3 [▼
0 => array:3 [▼
"names" => "pa"
"emails" => "[email protected]"
"passwords" => 123456
]
1 => array:3 [▼
"names" => "a123"
"emails" => "[email protected]"
"passwords" => 123456
]
2 => array:3 [▼
"names" => "b123"
"emails" => "[email protected]"
"passwords" => 123456
]
]
How can i change keys names as name, emails as email?
foreaching over the array and changing the keys didn't work?