rich-text-laravel
rich-text-laravel copied to clipboard
Integrates the Trix Editor with Laravel. Inspired by the Action Text gem from Rails.
This might be useful when migrating data that was initially unencrypted. My current thinking is something like: ```php Post::query()->each(function ($post) { $post->withoutRichTextDecryptionOnRead(function () use ($post { $post->update(['content' => $post->content?->toTrixHtml()]); });...
Right now we're not deleting the documents when the record is deleted, but we should.
I think we can add a component that matches the looks of the Flux editor (to make it easier for folks already using Flux). It doesn't have to match all...