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
Requires
- php: >=7.2.5
- laravel/framework: >=7.0
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.
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, ]; }