alaminfirdows / laravel-editorjs
A simple editor.js html parser for Laravel
Installs: 10 958
Dependents: 1
Suggesters: 0
Security: 0
Stars: 35
Watchers: 4
Forks: 16
Open Issues: 5
Requires
- php: ^7.2|^8.1|^8.2
- codex-team/editor.js: v2.0.7
- illuminate/support: ^8.0|^9.0|^10.0|^11.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.5
README
Laravel-Editor.js
A simple editor.js html parser for Laravel
Features
- Render Editor.js output
- Custom block rendering
Demo
You can can play with the demo here
Installation
You can install the package via composer:
composer require alaminfirdows/laravel-editorjs
You can publish the config file with:
php artisan vendor:publish --tag="laravel_editorjs-config"
Optionally, you can publish the views using
php artisan vendor:publish --tag="laravel_editorjs-views"
Usage
use App\Models\Post; $post = Post::find(1); echo LaravelEditorJs::render($post->body);
Defining An Accessor
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use AlAminFirdows\LaravelEditorJs\Facades\LaravelEditorJs; class Post extends Model { public function getBodyAttribute() { return LaravelEditorJs::render($this->attributes['body']); } } $post = Post::find(1); echo $post->body;
Versioning
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.