fix: [approval] 카드/계좌 관리 페이지 링크 수정
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user