56 lines
2.9 KiB
PHP
56 lines
2.9 KiB
PHP
<div class="px-6 py-4 border-b border-border-light flex justify-between items-center bg-gray-50/50">
|
|
<span class="text-sm font-medium text-text-medium" id="paginationStats">
|
|
@if($users->total() > 0)
|
|
Showing {{ $users->firstItem() }}-{{ $users->lastItem() }} of {{ $users->total() }} users
|
|
@else
|
|
Showing 0 users
|
|
@endif
|
|
</span>
|
|
</div>
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full divide-y divide-border-light text-sm">
|
|
<thead class="bg-gray-50/80">
|
|
<tr>
|
|
<th class="table-header-cell">MSNV</th>
|
|
<th class="table-header-cell">Email</th>
|
|
<th class="table-header-cell">Đã Nhận</th>
|
|
<th class="table-header-cell">Đã Gửi</th>
|
|
<th class="table-header-cell">Số dư thẻ</th>
|
|
<th class="table-header-cell">Quyền gửi</th>
|
|
<th class="table-header-cell text-right">Thao tác</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="bg-white divide-y divide-border-light">
|
|
@forelse($users as $u)
|
|
<tr class="hover:bg-slate-50 transition-colors">
|
|
<td class="table-body-cell font-bold text-text-dark">{{ $u->msnv }}</td>
|
|
<td class="table-body-cell text-text-medium">{{ $u->mail }}</td>
|
|
<td class="table-body-cell font-extrabold text-green-600">+{{ $u->total_received }}</td>
|
|
<td class="table-body-cell font-extrabold text-blue-600">{{ $u->total_sent }}</td>
|
|
<td class="table-body-cell font-extrabold text-orange-500">{{ $u->card }}</td>
|
|
<td class="table-body-cell">
|
|
@if($u->flag_send)
|
|
<span class="px-2 py-1 inline-flex text-[10px] leading-5 font-semibold rounded-full bg-green-100 text-green-800">Được gửi</span>
|
|
@else
|
|
<span class="px-2 py-1 inline-flex text-[10px] leading-5 font-semibold rounded-full bg-gray-100 text-gray-800">Không</span>
|
|
@endif
|
|
</td>
|
|
<td class="table-body-cell text-right font-medium space-x-3">
|
|
<a href="{{ route('admin.users.edit', $u->msnv) }}" class="table-action-link text-primary">Quản lý</a>
|
|
<button type="button" onclick="openDeleteModal('{{ $u->msnv }}', '{{ route('admin.users.destroy', $u->msnv) }}')" class="table-action-link text-red-500">Nghỉ việc</button>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="7" class="px-6 py-10 text-center text-text-light font-medium">Chưa có user nào đang hoạt động.</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
@if($users->hasPages())
|
|
<div class="px-6 py-4 border-t border-border-light bg-gray-50/30">
|
|
{{ $users->links() }}
|
|
</div>
|
|
@endif
|