Files
sam-manage/resources/views/trigger-audit/partials/sub-nav.blade.php

18 lines
1.1 KiB
PHP
Raw Normal View History

{{-- 트리거 감사 로그 서브 네비게이션 --}}
<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>