A Laravel Nova field for displaying a status icon, with optional tooltip and info text, on index and detail pages of your models. This package utilizes all icons from the Heroicons icon pack (from designer Steve Schroger), which is also used in Laravel Nova.
You can install the package using composer:
composer require wesselperik/nova-status-field
Next up, add the field to your desired Nova model. See the example below:
// for example, in app/Nova/Blog.php
use WesselPerik\StatusField\StatusField;
// ...
public function fields(Request $request) {
return [
// Use a single value for tooltips and info...
StatusField::make('Published')
->icons([
'minus-circle' => $this->published == 0,
'clock' => $this->pending == 1 && $this->published == 0,
'check-circle' => $this->pending == 0 && $this->published == 1
])
->color('primary') // optional
->solid(true) // optional
->tooltip($this->status) // optional
->info("Blog status: ".$this->status) // optional
->exceptOnForms()
// ...or change text based on the value
StatusField::make('Published')
->icons([
'minus-circle' => $this->published == 0,
'clock' => $this->pending == 1 && $this->published == 0,
'check-circle' => $this->pending == 0 && $this->published == 1
])
->tooltip([
'minus-circle' => 'Not published',
'clock' => 'Pending publication',
'check-circle' => 'Published'
])
->info([
'minus-circle' => 'This blog is not published yet.',
'clock' => 'This blog is pending publication.',
'check-circle' => 'This blog is published on '.$this->published_at->format('d-m-Y').'.'
])
->color([
'minus-circle' => 'red-500',
'clock' => 'blue-500',
'check-circle' => 'green-500'
])
->exceptOnForms()
];
}
Available icons are all Heroicons by Steve Schroger. By default, the icons are used in the outline style, but you can use the solid()
function to change to the solid style (see the example above).
Available colors are the following TailwindCSS text colors included in Laravel Nova 4, which are:
primary
gray
white
blue
green
red
The MIT License (MIT). Please see the license file for more information.