https://github.com/outl1ne/nova-trumbowyg-field
This Laravel Nova package adds a Trumbowyg field to Nova's arsenal of fields.
https://github.com/outl1ne/nova-trumbowyg-field
Last synced: about 2 months ago
JSON representation
This Laravel Nova package adds a Trumbowyg field to Nova's arsenal of fields.
- Host: GitHub
- URL: https://github.com/outl1ne/nova-trumbowyg-field
- Owner: outl1ne
- License: mit
- Created: 2022-08-11T11:29:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-13T12:51:39.000Z (over 1 year ago)
- Last Synced: 2025-03-19T03:47:14.975Z (2 months ago)
- Language: PHP
- Size: 1.07 MB
- Stars: 6
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Nova Trumbowyg Field
[](https://packagist.org/packages/outl1ne/nova-trumbowyg-field)
[](https://packagist.org/packages/outl1ne/nova-trumbowyg-field)This [Laravel Nova](https://nova.laravel.com/) package adds a Trumbowyg field to Nova's arsenal of fields.
## Requirements
- `php: >=8.0`
- `laravel/nova: ^4.0`## Installation
Install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:
```bash
composer require outl1ne/nova-trumbowyg-field
```Publish icons SVG:
```bash
php artisan vendor:publish --provider="Outl1ne\NovaTrumbowygField\FieldServiceProvider" --tag=public
```## Usage
```php
use Outl1ne\NovaTrumbowygField\Trumbowyg;public function fields(Request $request) {
Trumbowyg::make('Content', 'content'),
}
```## Credits
- [Tarvo Reinpalu](https://github.com/tarpsvo)
## License
Nova Trumbowyg Field is open-sourced software licensed under the [MIT license](LICENSE.md).