datasetId = $datasetId; $this->userId = $userId; } public function startRow(): int { return 6; } public function model(array $row) { return new DatasetTable2([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'kabupaten_kota' => $row[0], 'luas_lahan_non_pertanian' => $row[1], 'luas_lahan_sawah' => $row[2], 'luas_lahan_kering' => $row[3], 'luas_lahan_perkebunan' => $row[4], 'luas_lahan_hutan' => $row[5], 'luas_lahan_badan_air' => $row[6], 'created_by' => $row[7], ]); } }