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

Nova card for showing stats from novapackages.com

Notifications You must be signed in to change notification settings

tighten/nova-package-discovery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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,
    ];
}