A Filemanager Tool and Field for Laravel Nova 4
This package will be maintained and updated by Clevyr going forward. This package is currently compatible with Nova 3 and Laravel 9.
Forked from https://github.com/stepanenko3/nova-filemanager, which is a fork of https://github. com/InfinetyEs/Nova-Filemanager/
composer install clevyr/nova-filemanager
then
php artisan vendor:publish --tag=clevyr-nova-filemanager
Also, 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 \Clevyr\Filemanager\FilemanagerTool(),
];
}