https://github.com/outl1ne/nova-tooltip-field
This Laravel Nova package adds a tooltip field to Nova's arsenal of fields.
https://github.com/outl1ne/nova-tooltip-field
Last synced: 3 months ago
JSON representation
This Laravel Nova package adds a tooltip field to Nova's arsenal of fields.
- Host: GitHub
- URL: https://github.com/outl1ne/nova-tooltip-field
- Owner: outl1ne
- License: mit
- Created: 2022-08-11T13:09:37.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T12:53:14.000Z (over 2 years ago)
- Last Synced: 2025-02-14T23:18:31.102Z (3 months ago)
- Language: Vue
- Size: 610 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Nova Tooltip Field
[](https://packagist.org/packages/outl1ne/nova-tooltip-field)
[](https://packagist.org/packages/outl1ne/nova-tooltip-field)This [Laravel Nova](https://nova.laravel.com/) package adds a tooltip 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-tooltip-field
```## Usage
```php
use Outl1ne\NovaTooltipField\Tooltip;public function fields(Request $request) {
Tooltip::make('Content', 'someValue')
->text('Text displayed as field value')
->content('Content displayed in tooltip'),
}
```## Credits
- [Tarvo Reinpalu](https://github.com/tarpsvo)
## License
Nova Tooltip Field is open-sourced software licensed under the [MIT license](LICENSE.md).