You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `Editor` field is typically a handler for `text` model attributes (HTML). The `Editor` field is a [Tiptap](https://tiptap.dev/product/editor) editor combined with [alpine](https://alpinejs.dev/):
233
+
234
+
```php
235
+
$field = Editor::make(__('Content'), 'content');
236
+
```
237
+
238
+
The `root.php` config file contains the default configuration for each editor instance. You may edit the config file or you can also customize the configuration per instance:
239
+
240
+
```php
241
+
$field->withConfig(static function (array $config): array {
0 commit comments