aderinkok/laravel-file-manager is a Laravel package for file manager for laravel.
It currently has 0 GitHub stars and 8 downloads on Packagist (latest version 2.14.14).
Install it with composer require aderinkok/laravel-file-manager.
Discover more Laravel packages by aderinkok
or browse all Laravel packages to compare alternatives.
Last updated

DEMO: Laravel File Manager
Vue.js Frontend: alexusmai/vue-laravel-file-manager
Now you can create your own config repositories, it will allow to change your configuration dynamically.
How to do it:
Create new class - example - TestConfigRepository
namespace App\Http;
use Alexusmai\LaravelFileManager\Services\ConfigService\ConfigRepository;
class TestConfigRepository implements ConfigRepository
{
// implement all methods from interface
}
For example see src/Services/ConfigService/DefaultConfigRepository.php
Update pre-compiled css and js files and config file - file-manager.php
// config
php artisan vendor:publish --tag=fm-config --force
// js, css
php artisan vendor:publish --tag=fm-assets --force
If you use the ACL, now you don't need to add the acl middleware to configuration.
//======= In old versions ==========
'acl' => true,
// add acl middleware to your array
'middleware' => ['web', 'fm-acl'],
//======= In a new version =========
'acl' => true,
'middleware' => ['web'],