diff --git a/app/Http/Controllers/Lab/StrategyController.php b/app/Http/Controllers/Lab/StrategyController.php
index e2e7c7fd..be56a576 100644
--- a/app/Http/Controllers/Lab/StrategyController.php
+++ b/app/Http/Controllers/Lab/StrategyController.php
@@ -58,17 +58,6 @@ public function debt(Request $request): View|Response
return view('lab.strategy.debt');
}
- /**
- * 스테이블코인 보고서 (presentation layout)
- */
- public function stablecoin(Request $request): View|Response
- {
- if ($redirect = $this->handlePresentationPage($request, 'lab.strategy.stablecoin')) {
- return $redirect;
- }
- return view('lab.strategy.stablecoin');
- }
-
/**
* MRP 해외사례 (presentation layout)
*/
diff --git a/resources/views/lab/strategy/stablecoin.blade.php b/resources/views/lab/strategy/stablecoin.blade.php
deleted file mode 100644
index 3e6eb7ad..00000000
--- a/resources/views/lab/strategy/stablecoin.blade.php
+++ /dev/null
@@ -1,114 +0,0 @@
-@extends('layouts.presentation')
-
-@section('title', '스테이블코인 전략')
-
-@push('styles')
-
-@endpush
-
-@section('content')
-
-
-
-
-
-
스테이블코인 전략
-
- 스테이블코인의 시장 동향, 규제 환경, 기업 도입 전략에 대한
- 종합적인 분석 자료가 준비 중입니다.
-
-
Coming Soon
-
-
-
-
-
-
- 예정 콘텐츠
-
-
-
-
시장 분석
-
- - • USDT, USDC, DAI 비교
- - • 시장 점유율 및 거래량
- - • 가격 안정성 메커니즘
-
-
-
-
규제 환경
-
- - • 국내외 규제 동향
- - • 법적 리스크 분석
- - • 컴플라이언스 요건
-
-
-
-
기업 활용
-
- - • 결제 시스템 통합
- - • 국제 송금 효율화
- - • 재무 관리 전략
-
-
-
-
기술 분석
-
- - • 블록체인 인프라
- - • 스마트 컨트랙트 보안
- - • API 연동 가이드
-
-
-
-
-
-
-
-
-@endsection
diff --git a/resources/views/partials/sidebar-static.blade.php b/resources/views/partials/sidebar-static.blade.php
index 2f9a03ea..9e9ebf6f 100644
--- a/resources/views/partials/sidebar-static.blade.php
+++ b/resources/views/partials/sidebar-static.blade.php
@@ -499,7 +499,6 @@ class="flex items-center gap-2 pr-3 py-2 rounded-lg text-sm text-gray-700 hover:
노무 전략
채권추심 전략
- 스테이블코인 보고서
MRP 해외사례
상담용 챗봇 전략
KoDATA vs NICE API
diff --git a/routes/web.php b/routes/web.php
index 7ea3d721..6034884a 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -447,7 +447,6 @@
Route::get('/tax', [StrategyController::class, 'tax'])->name('tax');
Route::get('/labor', [StrategyController::class, 'labor'])->name('labor');
Route::get('/debt', [StrategyController::class, 'debt'])->name('debt');
- Route::get('/stablecoin', [StrategyController::class, 'stablecoin'])->name('stablecoin');
Route::get('/mrp-overseas', [StrategyController::class, 'mrpOverseas'])->name('mrp-overseas');
Route::get('/chatbot', [StrategyController::class, 'chatbot'])->name('chatbot');
Route::get('/kodata-vs-nice', [StrategyController::class, 'kodataVsNice'])->name('kodata-vs-nice');