Skip to content

A package to provide a card and a tool giving information about Nova releases, including whether you're current

License

Notifications You must be signed in to change notification settings

faxblaster/nova-releases

 
 

Repository files navigation

Nova-Releases Logo

Keep up on Nova releases

Latest Version on Packagist Total Downloads

The card:

screen shot 2018-09-06 at 12 13 19 am

screen shot 2018-09-06 at 12 13 45 am

The tool:

screen shot 2018-09-10 at 12 07 39 am

Installation

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

composer require tightenco/nova-releases

Next up, you may register the card with Nova. This is typically done in the cards method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvider.php

// ...

public function cards()
{
    return [
        // ...
        new \Tightenco\NovaReleases\LatestRelease,
    ];
}

You can also register the "release history" tool, in the tools method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvider.php

// ...

public function tools()
{
    return [
        // ...
        new \Tightenco\NovaReleases\AllReleases,
    ];
}

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

License

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

About

A package to provide a card and a tool giving information about Nova releases, including whether you're current

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 48.6%
  • PHP 39.5%
  • Blade 7.9%
  • JavaScript 4.0%