datasetId = $datasetId; $this->userId = $userId; } public function startRow(): int { return 6; } public function model(array $row) { return new DatasetTable37([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'lokasi' => $row[0], 'lat' => $row[1], 'long' => $row[2], 'lama_pengukuran' => $row[3], 'so2' => $row[4], 'co' => $row[5], 'no2' => $row[6], 'o3' => $row[7], 'hc' => $row[8], 'pm10' => $row[9], 'pm25' => $row[10], 'tsp' => $row[11], 'pb' => $row[12], 'dustfall' => $row[13], 'total_fluorides' => $row[14], 'fluor_index' => $row[15], 'chlorine_dioxide' => $row[16], 'sulphat_index' => $row[17], ]); } }