header('HX-Request')) { return response('', 200)->header('HX-Redirect', route('claude-code.pricing.index')); } return view('claude-code.pricing.index'); } public function download(): BinaryFileResponse { $path = public_path('downloads/claude-code-pricing.pptx'); abort_unless(file_exists($path), 404, 'PPTX 파일을 찾을 수 없습니다.'); return response()->download($path, 'Claude_Code_요금정책_비교분석.pptx'); } }