header('HX-Request')) { return response('', 200)->header('HX-Redirect', route('google-cloud.ai-guide.index')); } 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'); } }