[Solved] How Can i import Code ckeditor in my laravel app?

You can use laravel CKEditor Package; How to install: Set up package composer require unisharp/laravel-ckeditor Add ServiceProvider Edit config/app.php, add the following file to Application Service Providers section. Unisharp\Ckeditor\ServiceProvider::class, Publish the resources php artisan vendor:publish –tag=ckeditor Usage Default way (initiate by name or id) : <script src=”https://stackoverflow.com/vendor/unisharp/laravel-ckeditor/ckeditor.js”></script> <script> CKEDITOR.replace( ‘article-ckeditor’ ); </script> Or if you … Read more