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) { return null; // baris kosong dilewati } return new DatasetTable55([ 'dataset_id' => $this->datasetId, 'created_by' => $this->userId, 'nama_kegiatan' => $row[1], 'instansi' => $row[2], 'kelompok_sasaran' => $row[3], 'waktu_pelaksanaan' => $row[4], ]); } }