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-editorjs
Step 1: Clone the repository
git clone git@github.com:alaminfirdows/laravel-editorjs-demo.git
Step 2: Install the package dependencies
composer install
yarn install && yarn run build
Step 3: Create a .env
file
cp .env.example .env
Step 4: Generate an application key
php artisan key:generate
Step 5: Run the migrations
php artisan migrate --force
Step 6: Run the development server
php artisan serve
Visit http://localhost:8000
in your browser to see the editor in action.