quill
quill copied to clipboard
Quill Editor extension for laravel-admin
### 修改方法: 1. 在`vendor/jxlwqq/quill/src/Editor.php`文件找到JS代码部分; ``` var options = {$options}; var quill = new Quill("#{$this->id}", options); ``` 3. 在以上代码上方和下方增加JS代码,修改如下; ``` function imageHandler() { let IMGUR_API_URL = '/admin/upload-image'; let fileInput = this.container.querySelector('input.ql-image[type=file]');...
Is there is a way to set up the storage of uploaded files? I need to use the S3 storage
RT