- TriggerManagementService: 테이블별 트리거 상태 조회/재생성/삭제 - PartitionManagementService: 파티션 현황 조회/추가/삭제 (보관기간 검증) - triggers.blade.php: 트리거 상태 대시보드 + 개별/전체 재생성·삭제 - partitions.blade.php: 파티션 통계 + 추가/삭제 (초과분만) - sub-nav: 감사 로그 목록/트리거 관리/파티션 관리 탭 내비게이션 - 라우트 6개 추가, 컨트롤러 6개 메서드 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
1.1 KiB
PHP
18 lines
1.1 KiB
PHP
{{-- 트리거 감사 로그 서브 네비게이션 --}}
|
|
<div class="mb-6 border-b border-gray-200">
|
|
<nav class="flex gap-4 -mb-px">
|
|
<a href="{{ route('trigger-audit.index') }}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2 {{ request()->routeIs('trigger-audit.index') ? 'border-blue-600 text-blue-600' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300' }}">
|
|
감사 로그 목록
|
|
</a>
|
|
<a href="{{ route('trigger-audit.triggers') }}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2 {{ request()->routeIs('trigger-audit.triggers') ? 'border-blue-600 text-blue-600' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300' }}">
|
|
트리거 관리
|
|
</a>
|
|
<a href="{{ route('trigger-audit.partitions') }}"
|
|
class="px-4 py-2 text-sm font-medium border-b-2 {{ request()->routeIs('trigger-audit.partitions') ? 'border-blue-600 text-blue-600' : 'border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300' }}">
|
|
파티션 관리
|
|
</a>
|
|
</nav>
|
|
</div>
|