fix:R&D LABS에서 GPS 출퇴근 관리 메뉴 제거

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
pro
2026-01-28 13:14:40 +09:00
parent a905c000d8
commit df97176829
4 changed files with 0 additions and 71 deletions

View File

@@ -77,9 +77,4 @@ public function samAiAlarm()
return view('lab.ai.sam-ai-alarm');
}
// GPS 출퇴근 관리
public function gpsAttendance()
{
return view('lab.ai.gps-attendance');
}
}

View File

@@ -1,63 +0,0 @@
@extends('layouts.app')
@section('title', 'GPS 출퇴근 관리')
@push('styles')
<style>
.placeholder-container { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.placeholder-icon { width: 5rem; height: 5rem; margin-bottom: 2rem; opacity: 0.6; color: #7c3aed; }
.placeholder-title { font-size: 2rem; font-weight: 700; color: #7c3aed; margin-bottom: 1rem; }
.placeholder-subtitle { font-size: 1.25rem; color: #64748b; max-width: 500px; text-align: center; line-height: 1.8; }
.placeholder-badge { margin-top: 2rem; padding: 0.5rem 1.5rem; background: linear-gradient(135deg, #8b5cf6, #7c3aed); color: white; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; }
.feature-icon { width: 1.25rem; height: 1.25rem; color: #7c3aed; }
</style>
@endpush
@section('content')
<div class="min-h-screen bg-gradient-to-br from-violet-50 to-purple-100">
<div class="container mx-auto px-4 py-12">
<div class="placeholder-container">
<svg class="placeholder-icon" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M15 10.5a3 3 0 11-6 0 3 3 0 016 0z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1115 0z" />
</svg>
<h1 class="placeholder-title">GPS 출퇴근 관리</h1>
<p class="placeholder-subtitle">
모바일 GPS를 활용한 직원 출퇴근 관리 시스템으로
위치 기반 자동 체크인/아웃을 지원합니다.
</p>
<div class="placeholder-badge">AI/Automation</div>
</div>
<div class="max-w-4xl mx-auto mt-12">
<div class="bg-white rounded-2xl shadow-lg p-8">
<h2 class="text-xl font-bold text-gray-800 mb-6 flex items-center">
<svg class="feature-icon mr-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
</svg>
예정 기능
</h2>
<div class="grid md:grid-cols-2 gap-6">
<div class="p-4 bg-violet-50 rounded-lg">
<h3 class="font-semibold text-violet-800 mb-2">출퇴근 체크</h3>
<ul class="text-sm text-gray-600 space-y-1">
<li> GPS 기반 위치 확인</li>
<li> 지오펜스 설정</li>
<li> 자동 체크인/아웃</li>
</ul>
</div>
<div class="p-4 bg-blue-50 rounded-lg">
<h3 class="font-semibold text-blue-800 mb-2">관리 기능</h3>
<ul class="text-sm text-gray-600 space-y-1">
<li> 근태 현황 대시보드</li>
<li> 이상 패턴 감지</li>
<li> 월별 리포트 생성</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
@endsection

View File

@@ -522,8 +522,6 @@ class="flex items-center gap-2 pr-3 py-2 rounded-lg text-sm text-gray-700 hover:
<li class="border-t border-gray-100 my-1"></li>
<li><a href="{{ route('lab.ai.sam-ai-menu') }}" class="block px-2 py-1 text-xs text-gray-600 rounded hover:bg-gray-100 hover:text-gray-900">SAM AI 메뉴 이동</a></li>
<li><a href="{{ route('lab.ai.sam-ai-alarm') }}" class="block px-2 py-1 text-xs text-gray-600 rounded hover:bg-gray-100 hover:text-gray-900">SAM AI 알람음 제작</a></li>
<li class="border-t border-gray-100 my-1"></li>
<li><a href="{{ route('lab.ai.gps-attendance') }}" class="block px-2 py-1 text-xs text-gray-600 rounded hover:bg-gray-100 hover:text-gray-900">GPS 출퇴근 관리</a></li>
</ul>
<!-- M. Management (11) -->
<ul id="lab-flyout-panel-m" class="lab-flyout-panel space-y-0.5 hidden">

View File

@@ -469,7 +469,6 @@
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');
Route::get('/gps-attendance', [AIController::class, 'gpsAttendance'])->name('gps-attendance');
});
// M. 관리 (Management)