I am trying to move 2 elements in my array. When I output the current array, this is my result:
array:["Date" => "2016-09-25"
"emp" => "12345 "
"work" => "coding"
"Hours" => "6.00"
"L" => "L"
"IBEW" => "IBEW"
]
What I'm trying to achieve is to move the two values (L and IBEW) to the second and third place, like this:
array:["Date" => "2016-09-25"
"emp" => "12345"
"L" => "L"
"IBEW" => "IBEW"
"work" => "coding"
"Hours" => "6.00"
]
How is this possible?