All Projects → tighten → nova-releases

tighten / nova-releases

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

Programming Languages

Vue
7211 projects
PHP
23972 projects - #3 most used programming language
Blade
752 projects
javascript
184084 projects - #8 most used programming language

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].