You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
// 引入 WangEditor 扩展类
|
|
use App\Admin\Extensions\WangEditor;
|
|
// 引入 Encore\Admin\Form 类
|
|
use Encore\Admin\Form;
|
|
|
|
// 忘记默认的 'map' 和 'editor' 字段,以便自定义处理
|
|
Form::forget(['map', 'editor']);
|
|
|
|
// 扩展表单功能,注册 WangEditor 作为一个新的表单字段类型
|
|
Form::extend('editor', WangEditor::class);
|