datasetId = $datasetId; $this->userId = $userId; } public function startRow(): int { return 6; } public function model(array $row) { return new DatasetTable26([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'lokasi_pemantauan' => $row[0], 'latitude' => $row[1], 'longitude' => $row[2], 'waktu_pemantauan' => $row[3], 'ph' => $row[4], 'dhl' => $row[5], 'so4' => $row[6], 'no3' => $row[7], 'cr' => $row[8], 'nh4' => $row[9], 'na' => $row[10], 'ca2' => $row[11], 'mg2' => $row[12], ]); } }