Backpack admin interface for files and folder, using elFinder
afzalsabbir/filemanager is a Laravel package for backpack admin interface for files and folder, using elfinder.
It currently has 0 GitHub stars and 127 downloads on Packagist (latest version v2.0.0).
Install it with composer require afzalsabbir/filemanager.
Discover more Laravel packages by afzalsabbir
or browse all Laravel packages to compare alternatives.
Last updated
Backpack admin interface for files and folder, using barryvdh/laravel-elfinder. This package literally just:
public/uploads folder;barryvdh/laravel-elfinder;
From your command line, require the package (this will also require barryvdh/laravel-elfinder):
composer require afzalsabbir/filemanager
Then run the install process:
php artisan backpack:filemanager:install
That's it. Hit refresh in your admin panel, and you'll find a new sidebar item pointing to the File Manager.
\Backpack\FileManager\Middleware\FileManagerMiddlewareAdd this line in file: app\Http\Kernel.php and property: $middlewareGroups['web']
protected $middlewareGroups = [
'web' => [
...
\Backpack\FileManager\Middleware\FileManagerMiddleware::class,
...
],
];
Then publish the config, assets and view files:
php artisan vendor:publish --provider=Backpack\FileManager\FileManagerServiceProvider
You can use elFinder in Backpack:
/admin/elfinder route (see screenshot above);browse, browse_multiple or ckeditor field types;If you discover any security related issues, please email [email protected] instead of using the issue tracker.
MIT. Please see the license file for more information.