fix: [bank-account] 보유계좌관리 테이블에 테넌트ID 열 추가
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
<table class="min-w-full">
|
||||
<thead class="bg-gray-50 border-b border-gray-200">
|
||||
<tr>
|
||||
<th class="px-6 py-3 text-center text-sm font-semibold text-gray-600">테넌트ID</th>
|
||||
<th class="px-6 py-3 text-left text-sm font-semibold text-gray-600">은행</th>
|
||||
<th class="px-6 py-3 text-left text-sm font-semibold text-gray-600">계좌번호</th>
|
||||
<th class="px-6 py-3 text-left text-sm font-semibold text-gray-600">예금종류</th>
|
||||
@@ -15,6 +16,11 @@
|
||||
<tbody class="bg-white divide-y divide-gray-100">
|
||||
@forelse($accounts as $account)
|
||||
<tr class="hover:bg-gray-50 transition-colors {{ $account->trashed() ? 'opacity-50 bg-red-50' : '' }}">
|
||||
{{-- 테넌트ID --}}
|
||||
<td class="px-6 py-4 whitespace-nowrap text-center text-sm text-gray-500">
|
||||
{{ $account->tenant_id }}
|
||||
</td>
|
||||
|
||||
{{-- 은행 --}}
|
||||
<td class="px-6 py-4 whitespace-nowrap">
|
||||
<a href="{{ route('finance.accounts.show', $account->id) }}"
|
||||
@@ -129,7 +135,7 @@ class="text-red-600 hover:text-red-800"
|
||||
</tr>
|
||||
@empty
|
||||
<tr>
|
||||
<td colspan="7" class="px-6 py-12 text-center">
|
||||
<td colspan="8" class="px-6 py-12 text-center">
|
||||
<div class="flex flex-col items-center gap-2">
|
||||
<svg class="w-12 h-12 text-gray-300" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z"/>
|
||||
|
||||
Reference in New Issue
Block a user