Laravel Community Tools by Tighten
Laravel Nova icon Nova Packages
N

Colorful multi status field

Readme

Laravel Nova Color multi status Field

This field allows to display (and store/edit) multiple values within 1 field as array or object. It will show values based on color map - as colorful square icons. Usually it is stored as json (but that depends purely on an Eloquent model implementation).

Field accepts both array and object values. If the data is an object, keys will be editable and will be displayed as tooltips (on hover)

repository on github

Possibility to edit values with string keys:

Screenshot Form

Display colorful squares based on value-to-color mapping. Showing keys on hover:

Screenshot Index

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require jankapusta/nova-color-multi-status-field

Usage

Laravel migration example:

$table->json('guests_per_week');

Laravel model example

class Hotel extends Model {
    protected $casts = [
        'guests_per_week' => 'array',
    ];
    // ....
}

Hotel::create([
    'guests_per_week' => [
      'Feb 10' => 5,
      'Feb 17' => 1,
      'Feb 24' => 12,
      'Mar 3' => 4,
      'Mar 10' => 0,
      'Mar 17' => 8,
      'Mar 24' => 14,
      'Mar 31' => 2,
      'Apr 7' => 9,
    ],
]);

Then add a field into Nova Resource

ColorMultiStatus::make('Events per week', 'guests_per_week')
   ->colorMap([
            0 => 'white',
            2 => 'lightgrey',
            5 => '#d3dc83',
            8 => '#a7c742',
            13 => '#7dbd41',
            34 => '#6cda05',
        ])
// optional configuration
  ->iconSize(5) // in pixels - default is 4
  ->iconSpacing(2)   // in pixels - default is 1
  ->showTooltips(false) // to hide tooltips 
  ->width(80), // in pixels

License

The MIT License (MIT). Please see License File for more information.

Screenshots

Back to Top
Added 5 years ago
Last updated 5 Years Ago
Version v0.9.9
Composer
jankapusta/nova-color-multi-status-field
GitHub stars 2
Packagist downloads 5,422

Favorites

5 users favorited

Rating

N/A
(out of 5)
★★★★★
★★★★
★★★
★★
0 ratings

Brought to you by Tighten

Issues/Feature Requests Stats Package Ideas