*/ #[Computed(cache: false)] public function statRows(): array { return app(KnowledgePointQuestionStatsService::class)->buildRows(); } #[Computed(cache: false)] public function markdownExport(): string { return app(KnowledgePointQuestionStatsService::class)->toMarkdownTable($this->statRows); } }