digital-creative/value-widget

A basic widget for laravel nova-dashboard.

Fund package maintenance!
milewski

v1.0.2 2023-10-24 14:56 UTC

This package is auto-updated.

Last update: 2024-03-28 09:19:29 UTC


README

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.