philperusse/nova-tooltip-field

A Laravel Nova field.

Installs: 152 565

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 2

Forks: 5

Open Issues: 3

Language:SCSS

0.1 2018-11-14 17:16 UTC

This package is auto-updated.

Last update: 2024-04-04 21:33:14 UTC


README

A Laravel Nova Tooltip field for the index view.

When you want to show additional data but do not want to clutter the table, put it in a tooltip.

Demo

Demo #1

Installation

Run this command in your Laravel Nova project:

$ composer require philperusse/nova-tooltip-field

Usage

Use this field as any other fields. By design, this field will only be shown on index (lists) views.

use philperusse\NovaTooltipField\Tooltip;

 Tooltip::make('More', function(){
    return 'This a tooltip. You can put lengthy content here or any additional info.';
 }),

HTML

You can also pass HTML to the tooltip.

Tooltip::make('More', function(){
	return '<h4>Additional User info</h4>'
		. ' <strong>Created at : </strong>' . Carbon::parse($this->created_at)->diffForHumans()
		. '<br>'
		.' <strong>Updated at : </strong>' . Carbon::parse($this->created_at)->diffForHumans();
}),

Demo #2

Contributions

All contributions are welcomed. Please send a PR.

Authors

The styles are based on Bootstrap's Tooltip component.

License

This package is open-sourced software licensed under the MIT Licence