digital-creative/value-widget

A basic widget for laravel nova-dashboard.

Downloads

33031

Stars

3

Version

v1.0.2

Nova Value Widget

Latest Version on Packagist Total Downloads License

Nova Welcome Card in Action

A simple widget for laravel Nova Dashboard.

Installation

You can install the package via composer:

composer require digital-creative/value-widget

Basic Usage

use DigitalCreative\NovaDashboard\Filters;
use DigitalCreative\ValueWidget\ValueWidget;
use Laravel\Nova\Http\Requests\NovaRequest;

class MyWidget extends ValueWidget
{
    public function configure(NovaRequest $request): void
    {
        $this->icon('<svg></svg> or heroicons name');
        $this->title('My Widget');
        $this->textColor(dark: '#845adf', light: '#845adf');
        $this->backgroundColor('#845adf4f');
    }

    public function value(Filters $filters): mixed
    {
      //
    }
}

⭐️ Show Your Support

Please give a ⭐️ if this project helped you!

Other Packages You Might Like

License

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

dcasia

Author

dcasia