A simple Laravel application that demonstrates how to use the EditorJS library to create a WYSIWYG editor. This application uses the alaminfirdows/laravel-editorjs package to handle the render the editor content.
To learn more about how to use the package, check out the documentation
or intall the package via composer
composer require alaminfirdows/laravel-editorjsStep 1: Clone the repository
git clone [email protected]:alaminfirdows/laravel-editorjs-demo.gitStep 2: Install the package dependencies
composer install
yarn install && yarn run buildStep 3: Create a .env file
cp .env.example .envStep 4: Generate an application key
php artisan key:generateStep 5: Run the migrations
php artisan migrate --forceStep 6: Run the development server
php artisan serveVisit http://localhost:8000 in your browser to see the editor in action.