Installing plugins to CKEditor 5 in Laravel 5 with webpack Installing plugins to CKEditor 5 in Laravel 5 with webpack laravel laravel

Installing plugins to CKEditor 5 in Laravel 5 with webpack


I have used CKEditor among others in my Laravel projects, but here is how I went about it:

  1. I downloaded the js and CSS files from CKEditor website and unzip the files
  2. I copy those files in the public folder of my Laravel Project
  3. You can access and use them in your blade pages like this
<code>   <script src="{{asset('js/ckeditor.js')}}"></script>   <link rel="stylesheet: href="{{asset('js/ckeditor.js')}}" /></code>