tightenco/nova-package-discovery

This package is abandoned and no longer maintained. No replacement package was suggested.

Discover the newest and most popular Nova packages.

v1.0.0 2020-09-12 02:27 UTC

This package is auto-updated.

Last update: 2024-03-14 14:44:39 UTC


README

Discover new packages! Check out the ten most recent and most popular packages on NovaPackages.com, and also check out some stats about the number of packages submitted and more.

image

Installation

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

composer require tightenco/nova-package-discovery

Next, you must 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\NovaPackageDiscovery\NovaPackageDiscovery,
    ];
}