clevyr / nova-filemanager
Filemanager tool for Laravel Nova
Installs: 29 372
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 9
Forks: 3
Open Issues: 10
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
- dev-master
- v5.0.0
- v4.1.1
- v4.1.0
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- 0.0.3
- 0.0.2
- 0.0.1
- dev-renovate/orchestra-testbench-9.x-lockfile
- dev-renovate/laravel-nova-5.x-lockfile
- dev-renovate/phpunit-phpunit-11.x-lockfile
- dev-renovate/vue3-dropzone-2.x-lockfile
- dev-renovate/filesize-10.x-lockfile
- dev-renovate/lock-file-maintenance
- dev-renovate/phpunit-phpunit-12.x
- dev-renovate/orchestra-testbench-10.x
- dev-nova4
This package is auto-updated.
Last update: 2025-05-07 04:18:48 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(),
];
}