catchAdmin/catch/system/tables/forms/SensitiveWord.php
2021-04-03 12:50:21 +08:00

15 lines
350 B
PHP

<?php
namespace catchAdmin\system\tables\forms;
use catchAdmin\permissions\model\Department as DepartmentModel;
use catcher\library\form\Form;
class SensitiveWord extends Form
{
public function fields(): array
{
return [
Form::input('word', '敏感词')->required()->placeholder('请输入敏感词'),
];
}
}