LaravelPackages.net
Acme Inc.
Toggle sidebar
xetaio/xetaravel-ckeditor

A wrapper to use CKEditor with Laravel.

1.391
0
v1.0.5
About xetaio/xetaravel-ckeditor

xetaio/xetaravel-ckeditor is a Laravel package for a wrapper to use ckeditor with laravel.. It currently has 0 GitHub stars and 1.391 downloads on Packagist (latest version v1.0.5). Install it with composer require xetaio/xetaravel-ckeditor. Discover more Laravel packages by xetaio or browse all Laravel packages to compare alternatives.

Last updated

Xetaravel CKEditor

This is a wrapper to use CKEditor with Laravel.

Installation

composer require xetaio/xetaravel-ckeditor

Import the CkeditorServiceProvider in your config/app.php:

Xetaravel\Ckeditor\Providers\CkeditorServiceProvider::class

Publish the CKEditor to your public directory :

php artisan vendor:publish --tag=ckeditor

Usage

<script src="https://raw.githubusercontent.com/XetaIO/Xetaravel-CKEditor/refs/heads/main/vendor/ckeditor/release/ckeditor.js"></script>
<script>
    CKEDITOR.replace('name-go-here');
</script>

Update

To update CKEditor to a new version, first run :

composer update

Then, delete the folder public/vendor/release and run the artisan command again :

php artisan vendor:publish --tag=ckeditor

Note : Do not put any custom configuration files in the public/vendor/release directory. Instead put them in the public/vendor directory or somewhere else and attach them to the CKEDITOR instance.

Star History Chart