How to Install and Use CKEditor 4 in Laravel

Do you want to install CKEditor in Laravel? CKEditor is a WYSIWYG(what you see is what you get) HTML editor that allows you to write rich text formats. In this article, I show you how to install and use CKEditor in Laravel. I will also explain how one can upload images in CKEditor.

This tutorial will be focused on adding CKEditor 4 in Laravel. For the integration of CKEditor 5, refer to our article on how to use CKEditor 5 in Laravel.

Why Need to Use CKEditor?

A rich text editor is necessary to write rich content for your pages or articles. On the website, we need to have different elements like images, paragraphs, links, etc. All these different elements can be easily added using the CKEditor.

HTML provides a textarea element for writing description. But, it comes with limitations. In textarea, it’s not easy and user-friendly to write HTML elements like p, div, img, etc.

To overcome such limitations, you can use CKEditor which itself is a rich text editor. It allows us to insert HTML elements between content. Below is the screenshot of how the CKEditor appears on a page.

Laravel CKEditor

Install CKEditor in Laravel

There are 2 ways to install CKEditor in Laravel – via CDN or using the CKEditor’s package. Both resources are available on the CKEditor’s download page.

The CDN link is //cdn.ckeditor.com/4.21.0/standard/ckeditor.js. If you choose CDN, you don’t need to download anything from the CKEditor’s website.

To install CKEditor without CDN, download the package(Standard Package recommended) on your machine. Next, create a folder ckeditor under the public directory of your Laravel project. And inside this ckeditor folder copy below files and folders from the downloaded package.

CKEditor Files

How to Use CKEditor in Laravel

After completing the previous step, you are ready with your CKEditor’s package. Now let’s see how to use the CKEditor.

Let’s say you have a Text area that should get replaced by CKEditor. To do so I am adding an id  editor to the  textarea.

<textarea id="editor" name="editor"></textarea>

Next, you need to include ckeditor.js file and write a JavaScript code that replaces this textarea with CKEditor.

<script src="{{ asset('ckeditor/ckeditor.js') }}"></script>
<script>
CKEDITOR.replace( 'editor' );
</script>

Above JavaScript code convert your textarea into the CKEditor. In order to use CDN the code would be as follow:

<script src="//cdn.ckeditor.com/4.21.0/standard/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'editor' );
</script>

Your CKEditor is ready. You can now add your rich content to the editor and use it on your website. To get the content of CKEditor use the statement below.

$content = $request->input('editor');

And to pre-fill the CKEditor with the content, just pass the value to the Text area as usual.

<textarea id="editor" name="editor">Your content here</textarea>

Upload and Insert Image in CKEditor

CKEditor by default does not give the option to upload the image. Enabling this feature requires writing a piece of code. It needs to add a Laravel route, a script for image upload, and some JavaScript. First, to provide the image upload option you need to call CKEditor in the following way.

<script>
CKEDITOR.replace( 'editor', {
    filebrowserUploadUrl: "{{route('upload', ['_token' => csrf_token() ])}}",
    filebrowserUploadMethod: 'form'
});
</script>

Here for the key filebrowserUploadUrl I passed the route URL and csrf token. Let’s define the route upload as follows.

Route::post('ckeditor/image_upload', 'EditorController@upload')->name('upload');

Head over to the terminal and create this EditorController.

php artisan make:controller EditorController

Reload the page. Click on CKEditor’s image icon and you will see the image upload option as shown below.

Image Upload in CKEditor

Now to insert the chosen image in CKEditor, you have to upload the image on the server and send back an image URL. For storing an image on a server, I create a symbolic link(symlink) of a storage folder. Run the command below to create a symlink:

php artisan storage:link

The route upload map with the upload method of EditorController. Define upload method in the EditorController as follows:

<?php
 
namespace App\Http\Controllers;
 
use Illuminate\Http\Request;
 
class EditorController extends Controller
{
    public function upload(Request $request)
    {
        if($request->hasFile('upload')) {
            //get filename with extension
            $filenamewithextension = $request->file('upload')->getClientOriginalName();
      
            //get filename without extension
            $filename = pathinfo($filenamewithextension, PATHINFO_FILENAME);
      
            //get file extension
            $extension = $request->file('upload')->getClientOriginalExtension();
      
            //filename to store
            $filenametostore = $filename.'_'.time().'.'.$extension;
      
            //Upload File
            $request->file('upload')->storeAs('public/uploads', $filenametostore);
 
            $CKEditorFuncNum = $request->input('CKEditorFuncNum');
            $url = asset('storage/uploads/'.$filenametostore);
            $msg = 'Image successfully uploaded';
            $re = "<script>window.parent.CKEDITOR.tools.callFunction($CKEditorFuncNum, '$url', '$msg')</script>";
             
            // Render HTML output
            @header('Content-type: text/html; charset=utf-8');
            echo $re;
        }
    }
}

That’s it! Now try to upload the image and you will get the image added successfully to the CKEditor.

I hope you understand how to install and use CKEditor in Laravel. Please share your thoughts and suggestions in the comment below.

Related Articles

If you liked this article, then please subscribe to our YouTube Channel for video tutorials.

55 thoughts on “How to Install and Use CKEditor 4 in Laravel

  1. sorry i put facebook url, cause i haven’t website.

    i want ask how if error when i send it to the server in image upload and error is HTTP error occurred during file upload (error status: 405). in header response the message error is “The POST method is not supported for this route. Supported methods: GET, HEAD.”

  2. I try this one on windows, then it functions well but when i put it on linux server the image upload does not function.
    can some one help me?

  3. Good system, but I need code highlighting for programming languages. Please tell me how to implement code highlighting in ckeditor, for example php, css, sql, html. P.S. everything is simple: 1) add a plugin to ckeditor. 2) add the language selection button to the ckeditor panel. 3) Then add everything to the vendor. http: / / ckeditor. com / ke4/addon/prism

  4. I save the images to the Storage folder and they are physically deposited there, already run in CMD $ php artisan storage: link, the folder pointing to storage was created, but even so when I enter the URL of the uploaded image it marks me 404 error, I’m sure the route is correct

  5. Not Found
    The requested URL /blog/ckeditor/image_upload was not found on this server.

    Apache Server at localhost Port 80

    1. I don’t have their full package so never tested with it. But I believe you need to copy files, folders from your full package to public/vendor/unisharp/laravel-ckeditor directory.

    1. Image upload feature does not come default in CKEditor. It needs customization. We’ll try to publish an article on this topic soon.

  6. hello
    editor worked and save data in database , but when i want show text on front page . show html tag in page
    like ” some ting ”
    don’t hidden html tag .
    how i can fix that problem ?

  7. i use ck editor for in laravel but i have a problem is aries . all the tag are display in the view hoe to hide such display tab in my view page

  8. The Editor works okay but is saving the HTML tags as well to the Database. Is there a way to trim of the HTML tags when rendering the Database response in the blade view?

  9. i keep on getting this error
    Class ‘Unisharp\Ckeditor\ServiceProvider::class’ not found
    how can this be fixed?

Leave a Reply

Your email address will not be published. Required fields are marked *