fix: [approval] 카드/계좌 관리 페이지 링크 수정

This commit is contained in:
김보곤
2026-03-04 20:42:26 +09:00
parent e006f25427
commit 33fcec9c9c

View File

@@ -42,7 +42,7 @@ class="text-blue-600 focus:ring-blue-500">
<template x-if="cards.length === 0">
<div class="text-sm text-gray-500 text-center py-4">
등록된 법인카드가 없습니다.
<a href="/finance/corporate-cards" class="text-blue-600 hover:underline ml-1">카드 관리</a>
<a href="{{ route('finance.corporate-cards') }}" class="text-blue-600 hover:underline ml-1">카드 관리</a>
</div>
</template>
<div class="flex flex-wrap gap-3" x-show="cards.length > 0">
@@ -74,7 +74,7 @@ class="relative border rounded-lg p-3 cursor-pointer transition-all"
<template x-if="accounts.length === 0">
<div class="text-sm text-gray-500 text-center py-4">
등록된 계좌가 없습니다.
<a href="/finance/bank-accounts" class="text-blue-600 hover:underline ml-1">계좌 관리</a>
<a href="{{ route('finance.accounts.index') }}" class="text-blue-600 hover:underline ml-1">계좌 관리</a>
</div>
</template>
<div class="flex flex-wrap gap-3" x-show="accounts.length > 0">