2025-12-10 19:20:39 +07:00
|
|
|
<div class="w-full">
|
|
|
|
|
<div class="p-3 rounded-sm bg-white shadow overflow-x-auto">
|
|
|
|
|
<h1 class="text-2xl font-bold mb-3">Nhóm khách hàng</h1>
|
2024-03-05 14:55:28 +07:00
|
|
|
|
2025-12-10 19:20:39 +07:00
|
|
|
<div class="flex items-center justify-end gap-2">
|
|
|
|
|
<a href="/admin/customer/customer-group-add" class="btn btn-outline btn-view btn-sm">
|
|
|
|
|
<i data-lucide="user-plus" class="size-4"></i>
|
|
|
|
|
<span class="">Thêm nhóm mới</span>
|
2024-03-05 14:55:28 +07:00
|
|
|
</a>
|
2025-12-10 19:20:39 +07:00
|
|
|
<a href="/admin/customer" class="btn btn-outline btn-view btn-sm">
|
|
|
|
|
<i data-lucide="clipboard" class="size-4"></i>
|
|
|
|
|
<span class="">Danh sách khách hàng</span>
|
2024-03-05 14:55:28 +07:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
2025-12-10 19:20:39 +07:00
|
|
|
<table class="table mt-5">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr class="bg-base-200 text-black font-bold">
|
2024-03-05 14:55:28 +07:00
|
|
|
<th class="w-[50px]">STT</th>
|
|
|
|
|
<th>Mã nhóm</th>
|
|
|
|
|
<th>Tên gọi/miêu tả</th>
|
|
|
|
|
<th class="w-[160px]">Khách hàng</th>
|
|
|
|
|
<th class="w-[125px]">Chỉnh sửa</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>1</td>
|
|
|
|
|
<td>0</td>
|
|
|
|
|
<td>Khách vip</td>
|
|
|
|
|
<td>
|
2025-12-10 19:20:39 +07:00
|
|
|
<a href="" class="btn btn-active btn-sm">Xem
|
2024-03-05 14:55:28 +07:00
|
|
|
danh sách</a>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
2025-12-10 19:20:39 +07:00
|
|
|
<div class='list-btn flex items-center justify-center gap-3'>
|
|
|
|
|
<a href="" title=" Form sản phẩm" class="btn btn-soft btn-xs btn-square btn-view">
|
|
|
|
|
<i data-lucide="pencil" class="size-3"></i>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="" title=" Form sản phẩm" class="btn btn-soft btn-xs btn-square btn-view">
|
|
|
|
|
<i data-lucide="plus" class="size-3"></i>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="" class="btn btn-soft btn-xs btn-square btn-error">
|
|
|
|
|
<i data-lucide="trash-2" class="size-3"></i>
|
2024-03-05 14:55:28 +07:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|