datasetId = $datasetId; $this->userId = $userId; } public function startRow(): int { return 6; } public function model(array $row) { // cek kalau row kosong jangan insert if ($row[0] === null && $row[1] === null && $row[2] === null && $row[3] === null && $row[4] === null && $row[5] === null && $row[6] === null) { return null; // baris kosong dilewati } return new DatasetTable50A([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'kanal_aduan' => $row[0], 'nama_skpd' => $row[1], 'kategori' => $row[2], 'rincian_masalah' => $row[3], 'bobot' => $row[4], 'tgl_masuk' => $row[5], 'tgl_tl' => $row[6], 'status' => $row[7], ]); } }