PHPackages                             robinflyhigh/laravel-adminer - 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. robinflyhigh/laravel-adminer

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

robinflyhigh/laravel-adminer
============================

Adminer (by Jakub Vrana) wrapper for Laravel 5.5+

1.0.7(6y ago)13.8k1MITPHPPHP &gt;=7.0

Since Dec 23Pushed 6y agoCompare

[ Source](https://github.com/robinflyhigh/laravel-adminer)[ Packagist](https://packagist.org/packages/robinflyhigh/laravel-adminer)[ RSS](/packages/robinflyhigh-laravel-adminer/feed)WikiDiscussions master Synced yesterday

READMEChangelog (4)Dependencies (2)Versions (9)Used By (0)

[![Total Downloads](https://camo.githubusercontent.com/8cb23c6360a48ba4ed62759444216f73983b401641f1ee3cee19de76b89ae223/68747470733a2f2f706f7365722e707567782e6f72672f6172616e796173656e2f6c61726176656c2d61646d696e65722f646f776e6c6f616473)](https://packagist.org/packages/aranyasen/laravel-adminer)[![Latest Stable Version](https://camo.githubusercontent.com/a95ef7de28ac8c41f11d518ad78f0203bf31aa0c17b9b805ec375e771dbd95f2/68747470733a2f2f706f7365722e707567782e6f72672f6172616e796173656e2f6c61726176656c2d61646d696e65722f762f737461626c65)](https://packagist.org/packages/aranyasen/laravel-adminer)[![License](https://camo.githubusercontent.com/d2e80a5e1fecdfef359027708c4a11c2669072ed715ac9c58e2b6f8a9ecc14e9/68747470733a2f2f706f7365722e707567782e6f72672f6172616e796173656e2f6c61726176656c2d61646d696e65722f6c6963656e7365)](https://packagist.org/packages/aranyasen/laravel-adminer)

Introduction
============

[](#introduction)

Laravel 5 wrapper for [Adminer](https://www.adminer.org). Adminer is a fast single-file database manager/explorer tool written by Jakub Vrana. It's a great replacement for PhpMyAdmin (also supports PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB).

This package is meant to be used with Laravel as an in-built database manager/explorer. It comes with support for Adminer [plugins](https://www.adminer.org/en/plugins/) and themes, which super-charges an already powerful tool.

This package is inspired by: [miroc/Laravel-Adminer](https://github.com/miroc/Laravel-Adminer). The reason to add this package is to keep it up-to-date with Adminer, add plugin support and a test suite (TBD).

#### Database view with default theme

[](#database-view-with-default-theme)

[![Database with default theme](images/DB-Default.JPG)](images/DB-Default.JPG)

#### Table view with 'rmsoft' theme

[](#table-view-with-rmsoft-theme)

[![Table with 'rmsoft' theme](images/DB-Table-Theme.JPG)](images/DB-Table-Theme.JPG)

Plugins Included
----------------

[](#plugins-included)

#### Tables-filter

[](#tables-filter)

Adds ability to do (fuzzy) search on table names. It's especially useful when you have a large set of tables

[![tables-filter](images/table-filter-plugin.JPG)](images/table-filter-plugin.JPG)

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

[](#installation)

To use this package, run:

```
composer require robinflyhigh/laravel-adminer

```

### To use Adminer to Laravel routes (e.g. /adminer), update `routes/web.php`:

[](#to-use-adminer-to-laravel-routes-eg-adminer-update-routeswebphp)

To autologin Adminer with Laravel default connection:

```
Route::any('adminer', '\Aranyasen\LaravelAdminer\AdminerAutologinController@index');
```

If you want to manually provide credentials on the UI instead:

```
Route::any('adminer', '\Aranyasen\LaravelAdminer\AdminerController@index');
```

Of course, you can add any middleware of your choice to restrict usage:

```
Route::any('adminer', '\Aranyasen\LaravelAdminer\AdminerAutologinController@index')
    ->middleware(['admin']);
```

### Disabling CSRF Middleware

[](#disabling-csrf-middleware)

Adminer doesn't work with VerifyCsrfToken middleware, so it has to be disabled on its route. In `VerifyCsrfToken.php` disable CSRF by adding adminer route to `$except` array:

```
protected $except = [
    'adminer'
];
```

### To add plugins

[](#to-add-plugins)

Adminer supports a host of [plugins](https://www.adminer.org/en/plugins/). See [CONTRIBUTING](CONTRIBUTING.md) to add a new plugin

### To add a new theme:

[](#to-add-a-new-theme)

Download your favorite theme in `public/`, e.g.:

```
$ wget https://raw.githubusercontent.com/vrana/adminer/master/designs/hever/adminer.css
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 53.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 ~64 days

Recently: every ~38 days

Total

8

Last Release

2249d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3509ca4ec2bfe41f5074073d3dcb9b42cfc471b94cbc14d4320b140676a51ab5?d=identicon)[robinflyhigh](/maintainers/robinflyhigh)

---

Top Contributors

[![senaranya](https://avatars.githubusercontent.com/u/5471894?v=4)](https://github.com/senaranya "senaranya (7 commits)")[![robinflyhigh](https://avatars.githubusercontent.com/u/275138?v=4)](https://github.com/robinflyhigh "robinflyhigh (6 commits)")

---

Tags

databaselaravel5managementexploreradminer

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/robinflyhigh-laravel-adminer/health.svg)

```
[![Health](https://phpackages.com/badges/robinflyhigh-laravel-adminer/health.svg)](https://phpackages.com/packages/robinflyhigh-laravel-adminer)
```

###  Alternatives

[spatie/laravel-backup

A Laravel package to backup your application

6.0k21.8M189](/packages/spatie-laravel-backup)[onecentlin/laravel-adminer

Laravel Adminer Database Manager

260491.1k3](/packages/onecentlin-laravel-adminer)[illuminate/database

The Illuminate Database package.

2.8k52.4M9.3k](/packages/illuminate-database)[mongodb/laravel-mongodb

A MongoDB based Eloquent model and Query builder for Laravel

7.1k7.2M71](/packages/mongodb-laravel-mongodb)[aranyasen/laravel-adminer

Adminer (by Jakub Vrana) wrapper for Laravel 9+

2096.7k](/packages/aranyasen-laravel-adminer)[kreait/laravel-firebase

A Laravel package for the Firebase PHP Admin SDK

1.3k16.5M42](/packages/kreait-laravel-firebase)

PHPackages © 2026

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