A Laravel Blade Component Library for the Editor.js Block Editor
Note: This library does nothing to validate or purify user input. This must be done in your application.
You can install the package via composer:
composer require arcanely/editorYou may override all default files like this
php artisan vendor:publish --provider="Arcanely\Editor\EditorServiceProvider"or pass a tag for config, public, src-assets, views
php artisan vendor:publish --provider="Arcanely\Editor\EditorServiceProvider" --tag=viewsYou can automate the asset publishing on updates by adding this to the composer.json scripts section.
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --provider=\"Arcanely\\Editor\\EditorServiceProvider\""
]
}// Usage description here
// Until docs are written, look at the welcome viewcomposer testPlease see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email nickolas.j.adams@gmail.com instead of using the issue tracker.