Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alfonsobries/nova-froala-editor
Froala editor input for laravel nova
https://github.com/alfonsobries/nova-froala-editor
froala-editor laravel nova
Last synced: 16 days ago
JSON representation
Froala editor input for laravel nova
- Host: GitHub
- URL: https://github.com/alfonsobries/nova-froala-editor
- Owner: alfonsobries
- License: mit
- Created: 2018-08-25T00:04:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-25T00:34:09.000Z (about 6 years ago)
- Last Synced: 2024-04-14T08:00:09.229Z (7 months ago)
- Topics: froala-editor, laravel, nova
- Language: Vue
- Size: 1.07 MB
- Stars: 17
- Watchers: 3
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Nova Froala editor field
Laravel Nova Froala Editor field.## Installation
1. You can install the package in to a Laravel app that uses Nova via composer:
```
composer require alfonsobries/nova-froala-editor
```2. The froala editor needs to load the font awesome library, in order to publish the fonts in the public folder you need to run:
```
php artisan vendor:publish --tag=froala-editor-fonts
```## Simple Usage:
```php
NovaFroalaEditor::make('Field Name')
```## Advanced Usage:
You can pass any existing Froala option. Consult the [Froala documentation](https://www.froala.com/wysiwyg-editor/docs/options) to view the list of all the available options
```php
NovaFroalaEditor::make('Description')
->options(['toolbarInline' => true])
```## Screenshot
![Froala editor](./docs/sh1.png)## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.