main
Ilham Wara Nugroho 2025-12-04 15:03:05 +07:00
parent 06c6bd6c94
commit 5a4fd5cc3f
1 changed files with 8 additions and 9 deletions

View File

@ -38,15 +38,14 @@ public function model(array $row)
return new DatasetTable25([
'dataset_id' => $this->datasetId,
'created_by' => $this->userId,
'lokasi' => $row[1],
'mata_air' => $row[2],
'ledeng_pam' => $row[3],
'sumur_bor_pompa' => $row[4],
'sumur_tak_terlindung' => $row[5],
'sungai' => $row[6],
'terlindung_air' => $row[7],
'air_kemasan' => $row[8],
'lainnya' => $row[9],
'mata_air' => $row[1],
'ledeng_pam' => $row[2],
'sumur_bor_pompa' => $row[3],
'sumur_tak_terlindung' => $row[4],
'sungai' => $row[5],
'terlindung_air' => $row[6],
'air_kemasan' => $row[7],
'lainnya' => $row[8],
]);
}
}