A tool that shows nova-specific packages installed on your application.
Since everyone is hella excited about Nova and installing all sorts of packages, this tool allows us to keep an eye on installed packages and see a detailed page of istructions straight from the NovaPackages api :)
Happy coding!
.You can install the package in to a Laravel app that uses Nova via composer:
composer require sidis405/nova-installed-packages
Next up, you must register the tool with Nova. This is typically done in the tools
method of the NovaServiceProvider
.
// in app/Providers/NovaServiceProvider.php
// ...
public function tools()
{
return [
// ...
new \Strandafili\NovaInstalledPackages\Tool(),
];
}
Click on the "Installed Packages" menu item in your Nova app to see the tool provided by this package.
composer test
If you discover any security related issues, please email forge405@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.