Looking to hire Laravel developers? Try LaraJobs

laravel-editorjs maintained by lostlink

Description
A simple editor.js html parser for Laravel with Tailwind styling
Last update
2023/01/23 16:42 (dev-main)
License
Links
Downloads
0

Comments
comments powered by Disqus

image

Laravel-Editor.js

A simple editor.js html parser for Laravel with Tailwind styling

Latest Version on Packagist Total Downloads


Installation

You can install the package via composer:

composer require lostlink/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 Lostlink\LaravelEditorJs\Facades\LaravelEditorJs;

class Post extends Model
{
    public function getBodyAttribute()
    {
        return LaravelEditorJs::render($this->attributes['body']);
    }
}

$post = Post::find(1);
echo $post->body;

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.