This commit is contained in:
antv
2026-07-21 10:16:06 +07:00
parent f8385185c9
commit 781a0f8aa7
17 changed files with 436 additions and 122 deletions
@@ -67,12 +67,20 @@
@endif
@endif
</td>
<td class="px-6 py-3.5 whitespace-nowrap font-extrabold text-base">
<td class="px-6 py-3.5 whitespace-nowrap font-extrabold text-base flex items-center gap-1.5">
@if($isReceiver)
<span class="text-green-600">+{{ $admin_record->received }}</span>
@else
<span class="text-blue-600">-{{ $admin_record->sent }}</span>
@endif
@php
$themes = config('card_themes');
$themeId = $admin_record->template_id ?? 1;
$theme = $themes[$themeId] ?? $themes[1];
@endphp
<span class="text-xs font-semibold text-gray-500 flex items-center" title="{{ $theme['name'] }}">
<span>{{ $theme['icon'] }}</span>
</span>
</td>
</tr>
@empty