stripe demo

This commit is contained in:
Edward Yang 2022-06-30 09:59:29 +08:00
parent b72fe9f31e
commit 2eaf2f1e69
1 changed files with 19 additions and 2 deletions

View File

@ -12,11 +12,28 @@
return [
[
'name' => 'api_key',
'label' => 'API Key',
'type' => 'string',
],
[
'name' => 'gender',
'name' => 'api_secret',
'label' => 'API Secret',
'type' => 'string',
],
[
'name' => 'description',
'label' => '描述',
'type' => 'text',
],
[
'name' => 'country',
'label' => '国家',
'type' => 'select',
'option' => ['male', 'female']
'option' => ['China', 'USA']
],
[
'name' => 'active',
'label' => '是否开启',
'type' => 'bool',
]
];