CKEditor4 Publisher for Laravel >= 5.5.
You can install the package via composer:
composer require juliomotol/laravel-ckeditor4
Key | Default Value | Description |
---|---|---|
publish_path |
public_path('js/plugins/ckeditor4') |
Use this option control where you want to publish the CKEditor4 assets. |
If you want to make changes in the configuration you can publish the config file using:
php artisan vendor:publish --provider="JulioMotol\CKEditor4\CKEdtor4ServiceProvider" --tag="config"
To publish the CKEditor4 assets, simply run the command:
# Install ckeditor in default path
php artisan ckeditor4:install
# Install ckeditor to a certain path
php artisan ckeditor4:install --path=public/foo/bar
CKEditor4 assets will be published in
./public/js/plugins/ckeditor4
by default.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.
This package as generated using Spatie's Package Skeleton Laravel Template