PHPackages                             aderinkok/laravel-file-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. aderinkok/laravel-file-manager

ActiveLibrary[File &amp; Storage](/categories/file-storage)

aderinkok/laravel-file-manager
==============================

File manager for Laravel

2.14.14(6y ago)08MITPHPPHP &gt;=7.1.0

Since Apr 21Pushed 6y agoCompare

[ Source](https://github.com/aderinkok/laravel-file-manager)[ Packagist](https://packagist.org/packages/aderinkok/laravel-file-manager)[ Docs](https://github.com/alexusami/laravel-file-manager)[ RSS](/packages/aderinkok-laravel-file-manager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (4)Versions (40)Used By (0)

Laravel File Manager
====================

[](#laravel-file-manager)

[![Latest Stable Version](https://camo.githubusercontent.com/f7e74a4623006af09e2451aa203d648d0d4aff395fd561225e6608bd79e2bbd7/68747470733a2f2f706f7365722e707567782e6f72672f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f762f737461626c65)](https://packagist.org/packages/alexusmai/laravel-file-manager)[![Total Downloads](https://camo.githubusercontent.com/8c057b361650012df17f8183b0ac51226f5b02e7fa122b6c3b1e5839e68a0488/68747470733a2f2f706f7365722e707567782e6f72672f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/alexusmai/laravel-file-manager)[![Latest Unstable Version](https://camo.githubusercontent.com/60d88928de2996900be281a503d9c1f3fd9e22b1623b30b148b6911cbc78015d/68747470733a2f2f706f7365722e707567782e6f72672f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f762f756e737461626c65)](https://packagist.org/packages/alexusmai/laravel-file-manager)[![License](https://camo.githubusercontent.com/8dfb6b8516324922a3bc208f6f4fc9c2c25bf6a7a341d85b1f6fd138115ad293/68747470733a2f2f706f7365722e707567782e6f72672f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f6c6963656e7365)](https://packagist.org/packages/alexusmai/laravel-file-manager)

[![Laravel File Manager](https://camo.githubusercontent.com/934498a1beffc776b55f7c3079b40635bd1c8507081e297d45db97878147cac3/68747470733a2f2f7261772e6769746875622e636f6d2f616c657875736d61692f7675652d6c61726176656c2d66696c652d6d616e616765722f6d61737465722f7372632f6173736574732f6c61726176656c2d66696c652d6d616e616765722e6769663f7261773d74727565)](https://camo.githubusercontent.com/934498a1beffc776b55f7c3079b40635bd1c8507081e297d45db97878147cac3/68747470733a2f2f7261772e6769746875622e636f6d2f616c657875736d61692f7675652d6c61726176656c2d66696c652d6d616e616765722f6d61737465722f7372632f6173736574732f6c61726176656c2d66696c652d6d616e616765722e6769663f7261773d74727565)

**DEMO:** [Laravel File Manager](http://file-manager.webmai.ru/)

**Vue.js Frontend:** [alexusmai/vue-laravel-file-manager](https://github.com/alexusmai/vue-laravel-file-manager)

Documentation
-------------

[](#documentation)

[Laravel File Manager Docs](./docs/index.md)

- [Installation](./docs/installation.md)
- [Configuration](./docs/configuration.md)
- [Integration](./docs/integration.md)
- [ACL](./docs/acl.md)
- [Events](./docs/events.md)
- [Update](./docs/update.md)

Features
--------

[](#features)

- Frontend on Vue.js - [vue-laravel-file-manager](https://github.com/alexusmai/vue-laravel-file-manager)
- Work with the file system is organized by the standard means Laravel Flysystem:
    - Local, FTP, S3, Dropbox ...
    - The ability to work only with the selected disks
- Several options for displaying the file manager:
    - One-panel view
    - One-panel + Directory tree
    - Two-panel
- The minimum required set of operations:
    - Creating files
    - Creating folders
    - Copying / Cutting Folders and Files
    - Renaming
    - Uploading files (multi-upload)
    - Downloading files
    - Two modes of displaying elements - table and grid
    - Preview for images
    - Viewing images
    - Full screen mode
- More operations (v.2):
    - Audio player (mp3, ogg, wav, aac), Video player (webm, mp4) - ([Plyr](https://github.com/sampotts/plyr))
    - Code editor - ([Code Mirror](https://github.com/codemirror/codemirror))
    - Image cropper - ([Cropper.js](https://github.com/fengyuanchen/cropperjs))
    - Zip / Unzip - only for local disks
- Integration with WYSIWYG Editors:
    - CKEditor 4
    - TinyMCE 4
    - TinyMCE 5
    - SummerNote
    - Standalone button
- ACL - access control list
    - delimiting access to files and folders
    - two work strategies:
        - blacklist - Allow everything that is not forbidden by the ACL rules list
        - whitelist - Deny everything, that not allowed by the ACL rules list
    - You can use different repositories for the rules - an array (configuration file), a database (there is an example implementation), or you can add your own.
    - You can hide files and folders that are not accessible.
- Events (v2.2)
- Thumbnails lazy load
- Dynamic configuration (v2.4)
- Supported locales : ru, en, ar, sr, cs, de, es, nl, zh-CN, fa, it, tr

In a new version 2.4
--------------------

[](#in-a-new-version-24)

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](https://github.com/alexusmai/laravel-file-manager/blob/master/src/Services/ConfigService/DefaultConfigRepository.php)

Upgrading to version 2.4
------------------------

[](#upgrading-to-version-24)

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'],
```

Contributors
------------

[](#contributors)

[![](https://camo.githubusercontent.com/a692d3dadd7482e27039ad2123bc98c545d4a850eb88180aad911f7910dd5799/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f30)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/0)[![](https://camo.githubusercontent.com/e876336282e30fe33fe06423df62ffb6da10def342bb2c6a0ddab27559b3d477/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f31)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/1)[![](https://camo.githubusercontent.com/791ae468999a6c865cd5db33f5992fd564e4f344406cf6f7ed8b51ebc7523680/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f32)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/2)[![](https://camo.githubusercontent.com/a654514e1e5ba37bcded139d2aefd36d908776bf2125fc7c9f13d83c61449f59/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f33)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/3)[![](https://camo.githubusercontent.com/4d80caba4cbb9d1d771c7d8165389ad65cb6f4c2824cb5c46f66ffa4164c813d/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f34)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/4)[![](https://camo.githubusercontent.com/c41d5ffbba644cf8ba3f027ee0ea4100e330ad8c158f8e4c6b634e07226538a8/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f35)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/5)[![](https://camo.githubusercontent.com/b0848f5fb47ad72ee6022fa69511777c4a310862cd4709ac13d1ad70b9d0540f/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f36)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/6)[![](https://camo.githubusercontent.com/d727889f2727e260c5e1003ba9e9d3d6862681a07a56e019444539f3b0ba1586/68747470733a2f2f736f757263657265722e696f2f66616d652f616c657875736d61692f616c657875736d61692f6c61726176656c2d66696c652d6d616e616765722f696d616765732f37)](https://sourcerer.io/fame/alexusmai/alexusmai/laravel-file-manager/links/7)

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity70

Established project with proven stability

 Bus Factor1

Top contributor holds 84.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~18 days

Recently: every ~11 days

Total

38

Last Release

2266d ago

Major Versions

1.0.4 → v2.0.02018-12-02

PHP version history (3 changes)1.0.0PHP &gt;=5.6.4

v2.0.6PHP &gt;=7.0.0

v2.4.9PHP &gt;=7.1.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/ef451c8e420fc11ed2897cac4ef000bdefaa85b083844c845a2f582fe998a8fd?d=identicon)[aderinkok](/maintainers/aderinkok)

---

Top Contributors

[![alexusmai](https://avatars.githubusercontent.com/u/7473505?v=4)](https://github.com/alexusmai "alexusmai (106 commits)")[![vahidalvandi](https://avatars.githubusercontent.com/u/7871623?v=4)](https://github.com/vahidalvandi "vahidalvandi (11 commits)")[![mige](https://avatars.githubusercontent.com/u/32698?v=4)](https://github.com/mige "mige (4 commits)")[![D34DlyM4N](https://avatars.githubusercontent.com/u/12827511?v=4)](https://github.com/D34DlyM4N "D34DlyM4N (2 commits)")[![aderinkok](https://avatars.githubusercontent.com/u/10107373?v=4)](https://github.com/aderinkok "aderinkok (1 commits)")[![TumTum](https://avatars.githubusercontent.com/u/225997?v=4)](https://github.com/TumTum "TumTum (1 commits)")

---

Tags

filemanagerlaravel 5

### Embed Badge

![Health badge](/badges/aderinkok-laravel-file-manager/health.svg)

```
[![Health](https://phpackages.com/badges/aderinkok-laravel-file-manager/health.svg)](https://phpackages.com/packages/aderinkok-laravel-file-manager)
```

###  Alternatives

[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[alexusmai/laravel-file-manager

File manager for Laravel

1.2k757.8k8](/packages/alexusmai-laravel-file-manager)[itskodinger/midia

Simple Media manager for your Laravel project

1415.8k](/packages/itskodinger-midia)[infinety-es/filemanager

Laravel 5 Filemanager

332.2k1](/packages/infinety-es-filemanager)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
