A bare bones nova wysiwyg field using ckeditor & ckfinder
This package was developed using PHP 8, Vue 3, Laravel 10, Nova 4, ckfinder for laravel and ckeditor 5 vue. It currently assumes you have a ckfinder connector endpoint at /ckfinder/connector
see ckfinder for laravel for details.
You can install the package in to a Laravel app that uses Nova via composer:
composer require craft-cloud/nova-ck-light
Default editor
use CraftCloud\NovaCkLight\NovaCkLight;
NovaCkLight::make('MyFieldName'),
Editor options
use CraftCloud\NovaCkLight\NovaCkLight;
NovaCkLight::make('MyFieldName')->toolbar(['heading', '|', 'bold', 'italic', 'link']),
If you require images without an editor
use CraftCloud\NovaCkLight\NovaCkLight;
NovaCkLight::make('MyFieldName')->imageOnly(),
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.