norman-huth/nova-watch-card

A card for Laravel Nova, which checks whether an update is available with NovaWat.ch.

Downloads

5

Stars

0

Version

v1.0.1

NovaWat.ch Card

A card for Laravel Nova, which checks whether an update is available with NovaWat.ch.

Preview

Installation

composer require norman-huth/nova-watch-card

Usage

Basic usage.

    public function cards(): array
    {
        return [
            new \NormanHuth\NovaWatchCard\NovaWatchCard(),
        ];
    }

Check Specific Version

    public function cards(): array
    {
        return [
            new \NormanHuth\NovaWatchCard\NovaWatchCard('4.29.0'),
        ];
    }

Add A Heading

    public function cards(): array
    {
        return [
            new \NormanHuth\NovaWatchCard\NovaWatchCard()
                ->setHeading('Customer 3'),
        ];
    }

Optional: Publish Translations

php artisan vendor:publish --tag=nova-watch-card-translations
Muetze42

Author

Muetze42