feat: [claude-code] 요금정책 PPTX 다운로드 기능 추가

- 7페이지 상세 PPTX 생성 (표지/API단가/비용비교/팀비용/상세비교/전환가이드/결론)
- PricingController download 메서드 추가
- 페이지 헤더에 PPTX 다운로드 버튼 추가
- .gitignore에 public/downloads/*.pptx 예외 추가
This commit is contained in:
김보곤
2026-03-02 11:25:22 +09:00
parent d9cd5d3526
commit e1289e0f82
5 changed files with 24 additions and 2 deletions

View File

@@ -726,6 +726,7 @@
});
Route::get('/pricing', [ClaudeCodePricingController::class, 'index'])->name('pricing.index');
Route::get('/pricing/download', [ClaudeCodePricingController::class, 'download'])->name('pricing.download');
});
/*