1. Go to this page and download the library: Download mortogo321/laravel-quill library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Mortogo321\LaravelQuill\Facades\Quill;
// Convert Delta to HTML
$html = Quill::deltaToHtml($deltaJson);
// Convert HTML to Delta
$delta = Quill::htmlToDelta($html);
// Sanitize HTML
$clean = Quill::sanitize($html);
// Get configuration
$config = Quill::getConfig('theme');