| 123456789101112131415161718192021222324252627 |
- export const optionStatus = [
- {
- label: 'pending',
- value: 'pending',
- },
- {
- label: 'success',
- value: 'success',
- },
- ]
-
- export const indexTable = [
- { field: 'updatedAt', header: 'Tanggal' },
- { field: 'name', header: 'Nama Pelanggan' },
- { field: 'phone', header: 'No HP Pelanggan' },
- { field: 'price', header: 'Total Harga' },
- { field: 'status', header: 'Status' },
- ]
-
- export const cartTable = [
- { field: 'number', header: 'Nomor Produk' },
- { field: 'name', header: 'Produk' },
- { field: 'price', header: 'Harga' },
- { field: 'qty', header: 'Kuantitas' },
- { field: 'unit', header: 'Satuan' },
- ]
|