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 411f4a596c
commit 458e5f890a
4 changed files with 18 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\View\View;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
class AiGuideController extends Controller
{
@@ -17,4 +18,13 @@ public function index(Request $request): View|Response
return view('google-cloud.ai-guide.index');
}
public function download(): BinaryFileResponse
{
$path = public_path('downloads/google-cloud-ai-guide.pptx');
abort_unless(file_exists($path), 404, 'PPTX 파일을 찾을 수 없습니다.');
return response()->download($path, 'Google_Cloud_AI_활용가이드.pptx');
}
}