norman-huth / nova-bbcode-textarea
Laravel Nova Textarea and Text field with BBCodes
Fund package maintenance!
huth.it/coffee
Installs: 7 260
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Language:JavaScript
Requires
- php: ^8.0
- laravel/nova: ^4.0.0
This package is auto-updated.
Last update: 2024-11-24 21:25:52 UTC
README
Quickly developed. Short tutorial.
With this Nova field you have the Textarea or Text with BBCodes.
(Tested with Nova 4)
Install
composer require norman-huth/nova-bbcode-textarea
Usage
use NormanHuth\BBCode\BBCode; BBCode::make(__('Name'), 'name')->codes([ '{author}' => __('This code insert the author'), '{date}' => __('This code insert the date'), ]),
Or Text Field:
use NormanHuth\BBCode\BB; BB::make(__('Name'), 'name')->codes([ '{author}' => __('This code insert the author'), '{date}' => __('This code insert the date'), ]),
Don't always show the content of textarea fields inside Nova
BBCode::make(__('Name'), 'name')->codes([ '{author}' => __('This code insert the author'), '{date}' => __('This code insert the date'), ])->alwaysShow(false),
Change button class
BBCode::make(__('Name'), 'name')->codes([ '{author}' => __('This code insert the author'), '{date}' => __('This code insert the date'), ])->btnClass('px-2 bg-white-200 text-dark-800'),
Add inline style to the button
BBCode::make(__('Name'), 'name')->codes([ '{author}' => __('This code insert the author'), '{date}' => __('This code insert the date'), ])->btnStyle('margin-bottom: 1rem'),