From 8e6fa5b8a72c1cfe4624b6907e90b2f2bef11b37 Mon Sep 17 00:00:00 2001 From: pro Date: Wed, 28 Jan 2026 13:47:39 +0900 Subject: [PATCH] =?UTF-8?q?refactor:SAM=20AI=20=EB=A9=94=EB=89=B4=20?= =?UTF-8?q?=EC=9D=B4=EB=8F=99/=EC=95=8C=EB=9E=8C=EC=9D=8C=20=EC=A0=9C?= =?UTF-8?q?=EC=9E=91=20=EB=A9=94=EB=89=B4=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - routes/web.php에서 sam-ai-menu, sam-ai-alarm 라우트 제거 - AIController에서 samAiMenu, samAiAlarm 메서드 제거 - sidebar-static.blade.php에서 메뉴 항목 제거 - sam-ai-menu.blade.php, sam-ai-alarm.blade.php 뷰 파일 삭제 Co-Authored-By: Claude Opus 4.5 --- app/Http/Controllers/Lab/AIController.php | 13 - resources/views/lab/ai/sam-ai-alarm.blade.php | 62 -- resources/views/lab/ai/sam-ai-menu.blade.php | 578 ------------------ .../views/partials/sidebar-static.blade.php | 6 - routes/web.php | 2 - 5 files changed, 661 deletions(-) delete mode 100644 resources/views/lab/ai/sam-ai-alarm.blade.php delete mode 100644 resources/views/lab/ai/sam-ai-menu.blade.php diff --git a/app/Http/Controllers/Lab/AIController.php b/app/Http/Controllers/Lab/AIController.php index f62a38ca..cbe17ec2 100644 --- a/app/Http/Controllers/Lab/AIController.php +++ b/app/Http/Controllers/Lab/AIController.php @@ -58,17 +58,4 @@ public function tenantChatbot() { return view('lab.ai.tenant-chatbot'); } - - // SAM AI 메뉴 이동 - public function samAiMenu() - { - return view('lab.ai.sam-ai-menu'); - } - - // SAM AI 알람음 제작 - public function samAiAlarm() - { - return view('lab.ai.sam-ai-alarm'); - } - } diff --git a/resources/views/lab/ai/sam-ai-alarm.blade.php b/resources/views/lab/ai/sam-ai-alarm.blade.php deleted file mode 100644 index 6736d66f..00000000 --- a/resources/views/lab/ai/sam-ai-alarm.blade.php +++ /dev/null @@ -1,62 +0,0 @@ -@extends('layouts.app') - -@section('title', 'SAM AI 알람음 제작') - -@push('styles') - -@endpush - -@section('content') -
-
-
- - - -

SAM AI 알람음 제작

-

- AI를 활용하여 SAM 시스템에서 사용할 - 맞춤형 알람음과 알림 사운드를 생성합니다. -

-
AI/Automation
-
- -
-
-

- - - - - 예정 기능 -

-
-
-

사운드 생성

-
    -
  • • AI 기반 사운드 합성
  • -
  • • 다양한 스타일 옵션
  • -
  • • 길이/음량 조절
  • -
-
-
-

알람 관리

-
    -
  • • 이벤트별 알람 설정
  • -
  • • 미리듣기 기능
  • -
  • • 사용자 커스텀 업로드
  • -
-
-
-
-
-
-
-@endsection diff --git a/resources/views/lab/ai/sam-ai-menu.blade.php b/resources/views/lab/ai/sam-ai-menu.blade.php deleted file mode 100644 index aa9f176d..00000000 --- a/resources/views/lab/ai/sam-ai-menu.blade.php +++ /dev/null @@ -1,578 +0,0 @@ -@extends('layouts.app') - -@section('title', 'SAM AI - 음성 어시스턴트') - -@push('styles') - -@endpush - -@section('content') -
- -
-
- - Sam AI -
- - - - -
- - -
-
-

Dashboard

- -
- - - - - -
-
- -
-
- -
-
-
Total Revenue
-
$124,500
-
+12.5% from last month
-
-
-
Active Projects
-
8
-
2 pending approval
-
-
-
Team Efficiency
-
94%
-
Top 5% in sector
-
-
- Analytics Chart Placeholder -
-
- - - -
- - -
- - - -
-
-@endsection - -@push('scripts') - - - - -@endpush diff --git a/resources/views/partials/sidebar-static.blade.php b/resources/views/partials/sidebar-static.blade.php index f675d938..4c097e41 100644 --- a/resources/views/partials/sidebar-static.blade.php +++ b/resources/views/partials/sidebar-static.blade.php @@ -423,9 +423,6 @@ class="flex items-center gap-2 pr-3 py-2 rounded-lg text-sm text-gray-700 hover:
  • Vertex RAG 챗봇
  • 테넌트 지식 업로드
  • 테넌트 챗봇
  • -
  • -
  • SAM AI 메뉴 이동
  • -
  • SAM AI 알람음 제작
  • @@ -487,9 +484,6 @@ class="flex items-center gap-2 pr-3 py-2 rounded-lg text-sm text-gray-700 hover:
  • Vertex RAG 챗봇
  • 테넌트 지식 업로드
  • 테넌트 챗봇
  • -
  • -
  • SAM AI 메뉴 이동
  • -
  • SAM AI 알람음 제작
  • diff --git a/routes/web.php b/routes/web.php index 0747ccb3..4806d4c7 100644 --- a/routes/web.php +++ b/routes/web.php @@ -466,8 +466,6 @@ Route::get('/vertex-rag', [AIController::class, 'vertexRag'])->name('vertex-rag'); Route::get('/tenant-knowledge', [AIController::class, 'tenantKnowledge'])->name('tenant-knowledge'); Route::get('/tenant-chatbot', [AIController::class, 'tenantChatbot'])->name('tenant-chatbot'); - Route::get('/sam-ai-menu', [AIController::class, 'samAiMenu'])->name('sam-ai-menu'); - Route::get('/sam-ai-alarm', [AIController::class, 'samAiAlarm'])->name('sam-ai-alarm'); }); });