Nova Package Discovery package
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.
Installation
You can install the package in to a Laravel app that uses Nova via composer:
composer require tightenco/nova-package-discoveryNext, 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,
];
}