admin_menu.rb
1form!
2title "Menu"
3
4field(
5 var: "action",
6 type: "list-single",
7 open: true,
8 label: "Pick an action",
9 description: "or put a new customer info",
10 options: [
11 { value: "info", label: "Customer Info" },
12 { value: "financial", label: "Customer Billing Information" },
13 { value: "bill_plan", label: "Bill Customer" }
14 ]
15)