A tool that shows nova-specific packages installed on your application.
indianic/laravel-nova-installed-packages is a Laravel package for a tool that shows nova-specific packages installed on your application..
It currently has 0 GitHub stars and 2 downloads on Packagist.
Install it with composer require indianic/laravel-nova-installed-packages.
Discover more Laravel packages by indianic
or browse all Laravel packages to compare alternatives.
Last updated
composer require indianic/laravel-nova-installed-packages
Step:- 2)
-----
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 \Standardpackage\NovaInstalledPackages\Tool(),
];
}