feat: [claude-code] 활용방안 PPTX 다운로드 기능 추가

- UsagePlanController에 download 메서드 추가
- 라우트에 /usage-plan/download 추가
- 뷰 헤더에 PPTX 다운로드 버튼 추가
- 7장 슬라이드 PPTX 파일 배치
This commit is contained in:
김보곤
2026-03-02 13:24:43 +09:00
parent fce349392d
commit 31e9b5d605
4 changed files with 17 additions and 1 deletions

View File

@@ -733,6 +733,7 @@
Route::get('/cowork', [ClaudeCodeCoworkController::class, 'index'])->name('cowork.index');
Route::get('/usage-plan', [ClaudeCodeUsagePlanController::class, 'index'])->name('usage-plan.index');
Route::get('/usage-plan/download', [ClaudeCodeUsagePlanController::class, 'download'])->name('usage-plan.download');
});
/*