Skip to content
This repository has been archived by the owner on Mar 18, 2024. It is now read-only.

Latest commit

 

History

History
65 lines (42 loc) · 1.93 KB

readme.md

File metadata and controls

65 lines (42 loc) · 1.93 KB

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.