PHPackages                             numaxlab/nova-ckeditor5-classic - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. numaxlab/nova-ckeditor5-classic

AbandonedArchivedLibrary[Templating &amp; Views](/categories/templating)

numaxlab/nova-ckeditor5-classic
===============================

A Laravel Nova CKEditor5 Classic Field.

1.1.2(5y ago)38137.2k↓32.9%40[10 issues](https://github.com/numaxlab/nova-ckeditor5-classic/issues)[1 PRs](https://github.com/numaxlab/nova-ckeditor5-classic/pulls)MITPHPPHP &gt;=7.1.0

Since May 22Pushed 1y ago1 watchersCompare

[ Source](https://github.com/numaxlab/nova-ckeditor5-classic)[ Packagist](https://packagist.org/packages/numaxlab/nova-ckeditor5-classic)[ RSS](/packages/numaxlab-nova-ckeditor5-classic/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)DependenciesVersions (9)Used By (0)

Introduction
------------

[](#introduction)

[CKEditor5 Classic editor](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/overview.html#classic-editor) field for Laravel Nova. Use the last version of the popular WYSIWYG editor as a [Laravel Nova](https://nova.laravel.com/) field.

[![Latest Version on Packagist](https://camo.githubusercontent.com/dfbb8efe1e502721b90293ba417a099aa87dd042030b8a5572bfc8aa39a8ecf6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e756d61786c61622f6e6f76612d636b656469746f72352d636c61737369632e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/numaxlab/nova-ckeditor5-classic)[![Total Downloads](https://camo.githubusercontent.com/96ed59cfa38e20692d3f67be3a3accb7235bf8c2b734c3f3cd6b7ffc91291d63/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e756d61786c61622f6e6f76612d636b656469746f72352d636c61737369632e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/numaxlab/nova-ckeditor5-classic)

Installation
------------

[](#installation)

You can install the package into a Laravel application that uses Nova via composer:

```
composer require numaxlab/nova-ckeditor5-classic
```

After installing publish the config:

```
php artisan vendor:publish --tag=config --provider=NumaxLab\\NovaCKEditor5Classic\\FieldServiceProvider
```

Usage
-----

[](#usage)

Use the `NumaxLab\NovaCKEditor5Classic\CKEditor5Classic` field in your Nova resource:

```
namespace App\Nova;

use NumaxLab\NovaCKEditor5Classic\CKEditor5Classic;

class Post extends Resource
{
    // ...

    public function fields(Request $request)
    {
        return [
            // ...

            CKEditor5Classic::make('Content'),

            // ...
        ];
    }
}
```

Customizing CKEditor
--------------------

[](#customizing-ckeditor)

If you want to change the Editor's settings, you can do so by editing the config file `config/ckeditor5Classic.php` or by setting it directly in your filed, if you need different setup per field:

```
CKEditor5Classic::make('Content')->withFiles('public')
->options([...]);

```

You can visit the CKEditor [configuration reference](https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/configuration.html) to check the available options.

Image uploads
-------------

[](#image-uploads)

This Nova field provides native attachments driver which works similar to [Trix File Uploads](https://nova.laravel.com/docs/1.0/resources/fields.html#file-uploads).

To use this attachments driver, publish and run the migration:

```
php artisan vendor:publish --tag=migrations --provider=NumaxLab\\NovaCKEditor5Classic\\\FieldServiceProvider
php artisan migrate
```

Then, allow users to upload images, just like with Trix field, chaining the `withFiles` method onto the field's definition. When calling this method, you should pass the name of the filesystem disk that images should be stored on:

```
use NumaxLab\NovaCKEditor5Classic\CKEditor5Classic;

CKEditor5Classic::make('Content')->withFiles('public');
```

And also, in your `app/Console/Kernel.php` file, you should register a [daily job](https://laravel.com/docs/5.7/scheduling) to prune any stale attachments from the pending attachments table and storage:

```
use NumaxLab\NovaCKEditor5Classic\Jobs\PruneStaleAttachments;

/**
* Define the application's command schedule.
*
* @param  \Illuminate\Console\Scheduling\Schedule  $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
    $schedule->call(function () {
        (new PruneStaleAttachments)();
    })->daily();
}
```

Credits
-------

[](#credits)

- [Adrian P. Blunier](https://github.com/ablunier)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance24

Infrequent updates — may be unmaintained

Popularity45

Moderate usage in the ecosystem

Community21

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~89 days

Recently: every ~121 days

Total

7

Last Release

2013d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1fa400939303e4e3c19460b471af77acc2fe3d0417225f23d95ad9a3741a41db?d=identicon)[ablunier](/maintainers/ablunier)

![](https://www.gravatar.com/avatar/1771ef754e6bc1a0cb9317f3eab3d6fc290200217cb2105b6bbe8f618ab926a3?d=identicon)[numaxlab](/maintainers/numaxlab)

---

Top Contributors

[![ablunier](https://avatars.githubusercontent.com/u/4113587?v=4)](https://github.com/ablunier "ablunier (21 commits)")[![michapixel](https://avatars.githubusercontent.com/u/370877?v=4)](https://github.com/michapixel "michapixel (4 commits)")[![harmenjanssen](https://avatars.githubusercontent.com/u/803176?v=4)](https://github.com/harmenjanssen "harmenjanssen (2 commits)")[![medteck](https://avatars.githubusercontent.com/u/12381774?v=4)](https://github.com/medteck "medteck (1 commits)")[![patrickbrouwers](https://avatars.githubusercontent.com/u/7728097?v=4)](https://github.com/patrickbrouwers "patrickbrouwers (1 commits)")[![veneliniliev](https://avatars.githubusercontent.com/u/5311085?v=4)](https://github.com/veneliniliev "veneliniliev (1 commits)")[![JaZo](https://avatars.githubusercontent.com/u/3475007?v=4)](https://github.com/JaZo "JaZo (1 commits)")[![king724](https://avatars.githubusercontent.com/u/350488?v=4)](https://github.com/king724 "king724 (1 commits)")

---

Tags

ckeditorckeditor5laravellaravel-nova-fieldnovalaravelwysiwygnovackeditor5

### Embed Badge

![Health badge](/badges/numaxlab-nova-ckeditor5-classic/health.svg)

```
[![Health](https://phpackages.com/badges/numaxlab-nova-ckeditor5-classic/health.svg)](https://phpackages.com/packages/numaxlab-nova-ckeditor5-classic)
```

###  Alternatives

[outl1ne/nova-multiselect-field

A multiple select field for Laravel Nova.

3402.9M2](/packages/outl1ne-nova-multiselect-field)[johnathan/nova-trumbowyg

A Laravel Nova wrapper for the Trumbowyg WYSIWYG editor

25214.0k](/packages/johnathan-nova-trumbowyg)[waynestate/nova-ckeditor4-field

This nova package allows you to use CKEditor 4 for text areas.

62739.1k8](/packages/waynestate-nova-ckeditor4-field)[mati365/ckeditor5-livewire

CKEditor 5 integration for Laravel Livewire

413.9k](/packages/mati365-ckeditor5-livewire)[saumini/ellipsis-textarea

A Laravel Nova textarea field with ellipsis support

12146.9k](/packages/saumini-ellipsis-textarea)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
