Package description: Work in process
Install via composer
composer require alexsabur/orchid-editorjs-field
/**
* Views.
*
* @return Layout[]
*/
public function layout(): array
{
return [
Layout::rows([
EditorJS::make('mydata')->tools([
MarkerTool::make('marker'),
ImageTool::make('picture')
HeaderTool::make('header')
])
]),
];
}
php artisan orchid:editorjs:tool MySuperTool
And in js
class MySuperTool {
//code
}
window.editorJSTools = window.editorJSTools || [];
window.editorJSTools['MySuperTool'] = MySuperTool;
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
This package is bootstrapped with the help of melihovv/laravel-package-generator.