22 lines
477 B
PHP
22 lines
477 B
PHP
<?php
|
|
/**
|
|
* lianlianpay 字段
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2022-12-20 21:16:23
|
|
* @modified 2022-12-20 21:16:23
|
|
*/
|
|
|
|
return [
|
|
[
|
|
'name' => 'comment',
|
|
'label_key' => 'common.comment',
|
|
'type' => 'rich-text',
|
|
'required' => true,
|
|
'rules' => 'required',
|
|
'description' => 'Description to payer',
|
|
],
|
|
];
|