PHPackages                             mdmnv/filament-database-viewer - 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. [Database &amp; ORM](/categories/database)
4. /
5. mdmnv/filament-database-viewer

ActiveLibrary[Database &amp; ORM](/categories/database)

mdmnv/filament-database-viewer
==============================

Reusable Filament page for browsing and editing relational database tables.

1.0.7(5mo ago)06MITPHPPHP ^8.1

Since Dec 1Pushed 5mo agoCompare

[ Source](https://github.com/XojiakbarMadaminov/database-viewer)[ Packagist](https://packagist.org/packages/mdmnv/filament-database-viewer)[ RSS](/packages/mdmnv-filament-database-viewer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (9)Dependencies (6)Versions (9)Used By (0)

Database Browser for Filament
=============================

[](#database-browser-for-filament)

A reusable Filament page that surfaces PostgreSQL tables, lets you inspect, search, sort, and optionally edit or delete rows from a configurable read/write connection. All strings, views, and actions are configurable/publishable so you can tailor the browser to any panel.

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

[](#installation)

1. **Require the package**

    ```
    composer require mdmnv/filament-database-viewer
    ```
2. **Register the service provider** (Laravel auto-discovers packages, but you can register it manually if discovery is disabled.)

    ```
    'providers' => [
        // ...
        Mdmnv\FilamentDatabaseViewer\DatabaseBrowserServiceProvider::class,
    ],
    ```
3. **Publish the assets**

    ```
    php artisan vendor:publish --tag=database-browser-config
    php artisan vendor:publish --tag=database-browser-views
    php artisan vendor:publish --tag=database-browser-translations
    ```
4. **Register the page with your Filament panel**

    ```
    use Mdmnv\FilamentDatabaseViewer\Filament\Pages\DatabaseBrowserPage;

    public function panel(Panel $panel): Panel
    {
        return $panel
            // ...
            ->pages([
                DatabaseBrowserPage::class,
            ]);
    }
    ```
5. **Configure authorization and limits**

    The published config (`config/database-browser.php`) controls:

    - Read/write connection names
    - Allowed/disallowed tables + listing limit
    - Preview limit + column truncation threshold
    - Toggle for write actions
    - Authorization via a Gate ability or invokable policy class
    - Navigation label/group/icon/sort
    - Livewire namespace for multi-panel safety

Testing
-------

[](#testing)

Run Pest (or PHPUnit) once dependencies are installed:

```
./vendor/bin/pest
```

The suite covers table listing filters, modal preview formatting, and ensuring write mode stays disabled when configured.

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance76

Regular maintenance activity

Popularity4

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

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 ~0 days

Total

8

Last Release

159d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/19e63bea63c042925b61699706bee621abd197bdefb66be64ee895235732c04d?d=identicon)[XojiakbarMadaminov](/maintainers/XojiakbarMadaminov)

---

Tags

laraveldatabaseViewer

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/mdmnv-filament-database-viewer/health.svg)

```
[![Health](https://phpackages.com/badges/mdmnv-filament-database-viewer/health.svg)](https://phpackages.com/packages/mdmnv-filament-database-viewer)
```

###  Alternatives

[relaticle/custom-fields

User Defined Custom Fields for Laravel Filament

15828.6k](/packages/relaticle-custom-fields)[tomatophp/filament-translations

Manage your translation with DB and cache, you can scan your languages tags like trans(), \_\_(), and get the string inside and translate them use UI.

6230.1k3](/packages/tomatophp-filament-translations)[orptech/laravel-migration-partition

Laravel extensions that extends Illuminate to enable partitioned table creation within Laravel migrations.

3426.7k](/packages/orptech-laravel-migration-partition)[tomatophp/filament-locations

Database Seeds for Countries / Cities / Areas / Languages / Currancy with ready to use resources for FilamentPHP

2320.8k6](/packages/tomatophp-filament-locations)[martinpetricko/filament-restore-or-create

FilamentPHP package that adds ability to check for similar deleted records and restore them instead of creating new ones.

112.3k](/packages/martinpetricko-filament-restore-or-create)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)

PHPackages © 2026

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