12345678910111213141516171819202122232425262728
  1. export const optionStatus = [
  2. {
  3. label: 'pending',
  4. value: 'pending',
  5. },
  6. {
  7. label: 'success',
  8. value: 'success',
  9. },
  10. ]
  11. export const indexTable = [
  12. { field: 'updatedAt', header: 'Tanggal' },
  13. { field: 'name', header: 'Nama Supplier' },
  14. { field: 'phone', header: 'No HP Supplier' },
  15. { field: 'email', header: 'Email Supplier' },
  16. { field: 'price', header: 'Total Harga' },
  17. { field: 'status', header: 'Status' },
  18. ]
  19. export const cartTable = [
  20. { field: 'number', header: 'Nomor Produk' },
  21. { field: 'name', header: 'Produk' },
  22. { field: 'price', header: 'Harga' },
  23. { field: 'qty', header: 'Kuantitas' },
  24. { field: 'unit', header: 'Satuan' },
  25. ]