feat: [google-cloud] AI 활용 가이드 PPTX 다운로드 기능 추가

- AiGuideController에 download() 메서드 추가
- AI 활용 가이드 PPTX 다운로드 라우트 추가
- 뷰에 PPTX 다운로드 버튼 추가
- 7장 슬라이드 HTML → PPTX 변환 파일 포함
This commit is contained in:
김보곤
2026-03-02 15:15:06 +09:00
parent 9fdbee5f0f
commit 84befa546d
4 changed files with 18 additions and 0 deletions

View File

@@ -761,6 +761,8 @@
Route::get('/ai-guide', [GoogleCloudAiGuideController::class, 'index'])
->name('ai-guide.index');
Route::get('/ai-guide/download', [GoogleCloudAiGuideController::class, 'download'])
->name('ai-guide.download');
});
/*