PHPackages                             tomatophp/filament-browser - 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. tomatophp/filament-browser

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

tomatophp/filament-browser
==========================

File &amp; Folders &amp; Media Browser With Code Editor

v2.0.4(1y ago)408.8k↓51.2%11[2 PRs](https://github.com/tomatophp/filament-browser/pulls)2MITPHPPHP ^8.1|^8.2

Since Apr 16Pushed 1y ago3 watchersCompare

[ Source](https://github.com/tomatophp/filament-browser)[ Packagist](https://packagist.org/packages/tomatophp/filament-browser)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-browser/feed)WikiDiscussions master Synced yesterday

READMEChangelog (8)Dependencies (7)Versions (9)Used By (2)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/3x1io-tomato-browser.jpg)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/3x1io-tomato-browser.jpg)

Filament File Browser
=====================

[](#filament-file-browser)

[![Latest Stable Version](https://camo.githubusercontent.com/72f4ef9f99dd3f1f7b60523e9d5b1e3b4a816444b869056a63bb03be34ac859d/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d62726f777365722f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-browser)[![License](https://camo.githubusercontent.com/db3dcd8a9563e320a25b07db16f2e90f1015a12d79e23b49a44d184ffc2938aa/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d62726f777365722f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-browser)[![Downloads](https://camo.githubusercontent.com/4f27ad1d5932e09683a732bb659359460399908369c813f51140714f35737df7/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d62726f777365722f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-browser)

File &amp; Folders &amp; Media Browser With Code Editor

Caution

This package is for super-admin only and it's not recommended to use it for normal users. because it's give access to all files and folders in your server.

Screenshots
-----------

[](#screenshots)

[![Browser](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/browser.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/browser.png)[![File Types](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/file-types.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/file-types.png)[![Create File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/create-file.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/create-file.png)[![Delete File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/delete.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/delete.png)[![Rename File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/rename.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/rename.png)[![Markdown Editor](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/markdown.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/markdown.png)[![Code Editor](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/code.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/code.png)[![Video File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/video.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/video.png)[![Audio File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/audio.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/audio.png)[![Excel File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/excel.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/excel.png)[![Image File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/image.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/image.png)[![PDF File](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/pdf.png)](https://raw.githubusercontent.com/tomatophp/filament-browser/master/arts/pdf.png)

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

[](#installation)

```
composer require tomatophp/filament-browser
```

after install your package please run this command

```
php artisan filament-browser:install
```

finally reigster the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
->plugin(
    \TomatoPHP\FilamentBrowser\FilamentBrowserPlugin::make()
        ->hiddenFolders([
            base_path('app')
        ])
        ->hiddenFiles([
            base_path('.env')
        ])
        ->hiddenExtensions([
            "php"
        ])
        ->allowCreateFolder()
        ->allowEditFile()
        ->allowCreateNewFile()
        ->allowCreateFolder()
        ->allowRenameFile()
        ->allowDeleteFile()
        ->allowMarkdown()
        ->allowCode()
        ->allowPreview()
        ->basePath(base_path())
)
```

when you try to access the browser it will ask you about password it's `password` and you can change it from your `.env` file

```
DEVELOPER_GATE_PASSWORD=
```

Publish Assets
--------------

[](#publish-assets)

you can publish config file by use this command

```
php artisan vendor:publish --tag="filament-browser-config"
```

you can publish views file by use this command

```
php artisan vendor:publish --tag="filament-browser-views"
```

you can publish languages file by use this command

```
php artisan vendor:publish --tag="filament-browser-lang"
```

you can publish migrations file by use this command

```
php artisan vendor:publish --tag="filament-browser-migrations"
```

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance44

Moderate activity, may be stable

Popularity37

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 83.3% 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 ~52 days

Recently: every ~68 days

Total

8

Last Release

443d ago

Major Versions

v1.0.2 → v2.0.02024-07-18

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (20 commits)")[![aymanalareqi](https://avatars.githubusercontent.com/u/77433449?v=4)](https://github.com/aymanalareqi "aymanalareqi (2 commits)")[![damms005](https://avatars.githubusercontent.com/u/9839355?v=4)](https://github.com/damms005 "damms005 (2 commits)")

---

Tags

browserfilament-pluginfilefile-browsermanagerphpbrowserlaravelfilefolderfilament

### Embed Badge

![Health badge](/badges/tomatophp-filament-browser/health.svg)

```
[![Health](https://phpackages.com/badges/tomatophp-filament-browser/health.svg)](https://phpackages.com/packages/tomatophp-filament-browser)
```

###  Alternatives

[3x1io/filament-browser

File &amp; Folders &amp; Media Browser With Code Editor

491.3k](/packages/3x1io-filament-browser)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.6k](/packages/rawilk-profile-filament-plugin)[tomatophp/filament-artisan

Simple but yet powerful library for running some artisan commands for FilamentPHP

3275.4k1](/packages/tomatophp-filament-artisan)[tapp/filament-form-builder

User facing form builder using Filament components

132.4k3](/packages/tapp-filament-form-builder)[slimani/filament-media-manager

A media manager plugin for Filament.

126.9k](/packages/slimani-filament-media-manager)[mmes-design/filament-file-manager

A beautiful file manager plugin for Filament. Browse, upload, rename, move and delete files with ease.

163.1k](/packages/mmes-design-filament-file-manager)

PHPackages © 2026

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