clevyr / nova-filemanager
Filemanager tool for Laravel Nova
Installs: 28 061
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 10
Forks: 1
Open Issues: 10
Language:Vue
Requires
- php: >=8.1
- laravel/nova: ^4.0
Requires (Dev)
- orchestra/testbench: ^8.13
- phpunit/phpunit: ^10.4
- dev-master
- 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/vue-monorepo
- dev-renovate/postcss-8.x-lockfile
- dev-renovate/filesize-10.x-lockfile
- dev-renovate/vue3-dropzone-2.x-lockfile
- dev-renovate/vue-loader-17.x-lockfile
- dev-renovate/orchestra-testbench-9.x
- dev-renovate/phpunit-phpunit-11.x
- dev-renovate/lock-file-maintenance
- dev-nova4
This package is auto-updated.
Last update: 2024-10-12 05:36:51 UTC
README
A Filemanager Tool and Field for Laravel Nova 4
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 3 and Laravel 9.
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(),
];
}