clevyr / nova-filemanager
Filemanager tool for Laravel Nova
Installs: 28 869
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 10
Forks: 2
Open Issues: 7
Language:Vue
Requires
- php: ^8.3|^8.4
- laravel/nova: ^5.0
Requires (Dev)
- laravel/nova-devtool: ^1.6
- orchestra/testbench: ^9.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2025-03-05 20:09:38 UTC
README
A Filemanager Tool and Field for Laravel Nova 5
Filemanager Tool preview
Filemanager Field preview
Clevyr Nova Filemanager
This package will be maintained and updated by Clevyr going forward. This package is currently compatible with Nova 5 and Laravel 11 & 12.
Docs
Forked from https://github.com/stepanenko3/nova-filemanager, which is a fork of https://github. com/InfinetyEs/Nova-Filemanager/
Installation
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(),
];
}