Array propagate
Complete the array with the keys as part of the value
$arr = [
'one_option' => '',
'other' => '',
'created_at' => '',
'updated_at' => ''
]
$arr = [
'one_option' => $row['one_option'],
'other' => $row['other'],
'created_at' => $row['created_at'],
'updated_at' => $row['updated_at']
]