PHPackages                             seguce92/filemanager - 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. seguce92/filemanager

ActiveLibrary

seguce92/filemanager
====================

Filemanager integrator with tinyMCE for laravel framework.

v1.3.6(6y ago)130MITJavaScriptPHP &gt;=5.3

Since Jan 19Pushed 6y ago2 watchersCompare

[ Source](https://github.com/seguce92/filemanager)[ Packagist](https://packagist.org/packages/seguce92/filemanager)[ RSS](/packages/seguce92-filemanager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (10)Used By (0)

FileManager for Laravel 5.3.*|5.4.*|5.5.*|5.6.*|5.8.\*
------------------------------------------------------

[](#filemanager-for-laravel-5354555658)

Installation
------------

[](#installation)

### Laravel 5.x:

[](#laravel-5x)

You can install the package for your Laravel 5 project through Composer.

```
$ composer require seguce92/filemanager
```

Register the service provider array in `app/config/app.php` if laravel version is &lt;= 5.4.

```
Seguce92\Filemanager\ServiceProvider::class,
```

You can optionally use the facade for shorter code. Add this to your facades in array `aliases`:

```
'Filemanager' => Seguce92\Filemanager\FileManagerFacade::class,
```

Export setting file and resources with command:

```
$ php artisan vendor:publish
```

Configuration
-------------

[](#configuration)

To start using the file manager perform the respective configuration in the file `app\config\seguce92\filemanager.php`

```
    /**
     * PATH GLOBAL FILEMANAGER EMBED IN TINYMCE EDITOR
     * --------------------------------------------------------------
     *  Path filemanager resources
     */
    'filemanager' => '/filemanager/',

    /**
     * TITLE MODAL DIALOG
     * --------------------------------------------------------------
     *  Title of the modal dialog
     */
    'filemanager_title' => 'FileManager for Laravel with tinymce',

    /**
     * ROUTE OR URL
     * --------------------------------------------------------------
     *  Route or url
     */
    'url'	=>	'admin/filemanager/',

    /**
     * SINGLE IMPUT
     * --------------------------------------------------------------
     *  Single file manager charge in modal dialog
     */
    'single_filemanager'	=>	'filemanager/dialog.php?type=1&amp;field_id=image-filemanager&amp;relative_url=1',

    /**
     * FRAMEWORK STYLE
     * --------------------------------------------------------------
     * Select a use framework style (bootstrap, materializecss)
     */
    'style' =>  'bootstrap',

    /**
     * CUSTOM ICONS
     * --------------------------------------------------------------
     *  Custom icons relative style
     */
    'icons' => [
        'bootstrap' =>  [
            'select'    =>  'glyphicon glyphicon-picture',
            'clear' =>  'glyphicon glyphicon-trash'
        ],

        'materializecss'    =>  [
            'select'    =>  'photo',
            'clear' =>  'delete'
        ]
    ],
```

Use
---

[](#use)

### Add style

[](#add-style)

```
{!! Filemanager::style() !!}
```

### Add script

[](#add-script)

```
{!! Filemanager::script() !!}
```

### Embend in TinyMCE 4 Editor

[](#embend-in-tinymce-4-editor)

1. First add the style and script directives
2. In the content section use the directive

    ```
    {!! Filemanager::textarea('title for label') !!}
    ```
3. In the script section use the directive

    ```
    {!! Filemanager::tinymce() !!}
    ```

### Single input with Dialog Responsive Filemanager

[](#single-input-with-dialog-responsive-filemanager)

1. First add the style and script directives
2. In the content section use the directive

    ```
    {!! Filemanager::input('title for label') !!}
    ```

### Example

[](#example)

```
@extends('layouts.app')

@section('style')
    {!! Html::style('path/to/bootstrap.min.css') !!}
    {!! Filemanager::style() !!}
@endsection

@section('content')

                title

            {!! Filemanager::textarea('content') !!}

            {!! Filemanager::input('image') !!}

                CANCEL
                SAVE

@endsection

@section('script')
    {!! Html::style('path/to/jquery.min.js') !!}
    {!! Html::style('path/to/bootstrap.min.css') !!}
    {!! Filemanager::script() !!}
    {!! Filemanager::tinymce() !!}
@endsection
```

### Information and Details

[](#information-and-details)

visit site [mascodigo.net](https://mascodigo.net)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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 ~111 days

Recently: every ~222 days

Total

9

Last Release

2510d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0b97e6bca07311f18ba3e29140ca9b4358e64df20d279db6ff81f1c69b8a95a7?d=identicon)[seguce92](/maintainers/seguce92)

---

Top Contributors

[![seguce92](https://avatars.githubusercontent.com/u/7014932?v=4)](https://github.com/seguce92 "seguce92 (9 commits)")

---

Tags

laravelbootstrapfilemanagertinymce 4masterializecss

### Embed Badge

![Health badge](/badges/seguce92-filemanager/health.svg)

```
[![Health](https://phpackages.com/badges/seguce92-filemanager/health.svg)](https://phpackages.com/packages/seguce92-filemanager)
```

###  Alternatives

[anahkiasen/former

A powerful form builder

1.4k1.4M14](/packages/anahkiasen-former)[itskodinger/midia

Simple Media manager for your Laravel project

1415.8k](/packages/itskodinger-midia)[stepanenko3/nova-filemanager

File manager tool for Laravel Nova

1633.5k2](/packages/stepanenko3-nova-filemanager)[rinvex/laravel-menus

Rinvex Menus is a simple menu builder package for Laravel, that supports hierarchical structure, ordering, and styling with full flexibility using presenters for easy styling and custom structure of menu rendering.

294.0k20](/packages/rinvex-laravel-menus)[nguyendachuy/laravel-menu

Laravel Menu Builder | Drag &amp; Drop | Bootstrap | Laravel 7 | Laravel 8 | Laravel 9 | Laravel 10 | Laravel 11 | Laravel 12

162.2k](/packages/nguyendachuy-laravel-menu)

PHPackages © 2026

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