An open API service indexing awesome lists of open source software.

https://github.com/slimani-dev/moh-slimani-nova-tiny-m-c-e


https://github.com/slimani-dev/moh-slimani-nova-tiny-m-c-e

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Nova TinyMCE

A Nova detail field that uses [TinyMCE](https://tiny.cloud/). to add the functionality of Riche Text editor.

## Installation

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

## Usage

```php

use MohSlimani\NovaTinyMCE\NovaTinyMCE;

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

```

## Options

### Full Width

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