illizian / nova-emoji-field-container
A Laravel Nova field.
Installs: 1 045
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
Requires
- php: >=7.1.0
README
Description
A Laravel Nova field that add's an emoji picker to a sub field.
Demo
Installation
The package can be installed through Composer.
composer require illizian/nova-emoji-field-container
Usage
Add a \Illizian\NovaEmojiFieldContainer\NovaEmojiFieldContainer
, field to your fields, like so:
/* ... */ use \Illizian\NovaEmojiFieldContainer\NovaEmojiFieldContainer; /* ... */ class Example extends Resource { /* ... */ public function fields(Request $request) { return [ /* ... */ NovaEmojiFieldContainer::make([ Textarea::make(__('Message'), 'message'), ]), ]; }
License
The MIT License (MIT). Please see License File for more information.