You might want to take a look at intervention image and this tutorial as well here
How to upload image to server using ckeditor 5 in laravel?
Hi, I am trying to upload image to my server from CKEditor 5 in laravel. I saw plugins for that But I can't understand how to install or use that. Now is there is any way to upload image to server without using there CKFinder and EasyImage?
@alodon these editors convert the image to base64 when you drop in an image and as such store it as text. They don't use the Laravel engine as it all done via ajax. So if you store the document the image will still be embedded there, but obviously limited to that document. The issue is the base64 is at least 30% larger than traditional image file sizes and if you using it externally will be a pain to load and search engines will complain that you have not optimized the image. There are two options - 1. write your own uploader and then write a markup plugin (Mark) to insert the url into the editor. Option 2, even more challenging is to write a Node plugin that will decorate or replace the image uploader to store the file and then inject it or convert it. Both are painful, but the first is easier, but not the workflow more complex for the user i.e upload, find, drag and drop, etc. as opposed to option 2 which is what I think your hoping to accomplish.
Please or to participate in this conversation.