Files
sam-manage/resources/views/fcm/partials/token-table.blade.php
권혁성 a55ec09cd9 fix: [admin] 테이블 컬럼 정렬 및 뱃지 버튼 UI 통일
- departments, roles, tenants, fcm/tokens 테이블 정렬 통일
- th 가운데 정렬, td 텍스트 컬럼 좌측, 단일값 컬럼 가운데
- fcm 토큰 행 뱃지 스타일 버튼 적용

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 01:18:05 +09:00

33 lines
1.7 KiB
PHP

<div id="token-table-container">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">사용자</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">테넌트</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">플랫폼</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">기기/버전</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">토큰</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">상태</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">등록일</th>
<th class="px-3 py-3 text-center text-xs font-medium text-gray-500 uppercase tracking-wider">작업</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@forelse($tokens as $token)
@include('fcm.partials.token-row', ['token' => $token])
@empty
<tr>
<td colspan="8" class="px-6 py-12 text-center text-gray-500">
등록된 토큰이 없습니다.
</td>
</tr>
@endforelse
</tbody>
</table>
@if($tokens->hasPages())
<div class="px-6 py-4 border-t border-gray-200">
{{ $tokens->withQueryString()->links() }}
</div>
@endif
</div>