store/resources/js/constants/order-channel.ts
Yoga Pangestu 1f9aba6ba5 feat: enhance order management with additional filters and pagination support
- Added channel, status, and payment type filters to the order index functionality.
- Updated OrderService to handle new filter parameters in pagination queries.
- Introduced filter definitions and values in the OrderGroupedTable component for improved data filtering.
- Enhanced the frontend to support dynamic filtering options for orders based on the new criteria.
2026-07-29 08:59:56 +07:00

6 lines
106 B
TypeScript

export const OrderChannel = {
STORE: 'store',
TIKTOK: 'tiktok',
SHOPEE: 'shopee',
} as const;