feat: add search and filter to admin pages

- Add search and filter (type, status) to AdminProducts
- Add search to AdminBootcamp
- Change mobile admin nav "Pesanan" to "Order"
- Show result counts for filtered data
- Handle empty states with helpful messages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
dwindown
2025-12-28 00:07:07 +07:00
parent 0e3a45cfe2
commit 3e418759a1
3 changed files with 114 additions and 15 deletions

View File

@@ -62,7 +62,7 @@ const mobileUserNav: NavItem[] = [
const mobileAdminNav: NavItem[] = [
{ label: 'Dashboard', href: '/admin', icon: LayoutDashboard },
{ label: 'Produk', href: '/admin/products', icon: Package },
{ label: 'Pesanan', href: '/admin/orders', icon: Receipt },
{ label: 'Order', href: '/admin/orders', icon: Receipt },
{ label: 'Pengguna', href: '/admin/members', icon: Users },
];