moh-slimani/nova-tiny-m-c-e

A Laravel Nova field that uses Tiny MCE.

1.0.1 2022-12-22 09:40 UTC

This package is auto-updated.

Last update: 2024-05-22 12:47:00 UTC


README

A Nova detail field that uses TinyMCE. to add the functionality of Riche Text editor.

Installation

composer require moh-slimani/nova-tiny-m-c-e

Usage

use MohSlimani\NovaTinyMCE\NovaTinyMCE;

//..
    public function fields(NovaRequest $request): array
    {
        return [
            //..
              NovaTinyMCE::make(__('text'))->hideFromIndex(),
            //..
        ]
    }

Options

Full Width

NovaTinyMCE::make(__('text'))->fullWidth(),