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

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

hocvt/laravel-adminer
=====================

Laravel Adminer Database Manager

v1.0.0(12mo ago)010MITPHPPHP &gt;=7.4.0

Since Mar 12Pushed 12mo agoCompare

[ Source](https://github.com/vuthaihoc/laravel-adminer)[ Packagist](https://packagist.org/packages/hocvt/laravel-adminer)[ RSS](/packages/hocvt-laravel-adminer/feed)WikiDiscussions custom Synced today

READMEChangelog (1)Dependencies (3)Versions (3)Used By (0)

Laravel Adminer Database Manager
================================

[](#laravel-adminer-database-manager)

Light weight [Adminer](https://www.adminer.org) database management tool integrated into Laravel 5 and above.

Various database support: MySQL, SQLite, PostgreSQL, Oracle, MS SQL, Firebird, SimpleDB, MongoDB, Elasticsearch, and etc.

Forked
------

[](#forked)

Original package [onecentlin/laravel-adminer](https://github.com/onecentlin/laravel-adminer)

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

[](#installation)

```
composer require hocvt/laravel-adminer --dev

```

OR

Update `composer.json` in require section:

```
"require-dev": {
    "hocvt/laravel-adminer": "^7.0"
},
```

Run:

```
composer update hocvt/laravel-adminer

```

Register package
----------------

[](#register-package)

> Laravel auto package discovery feature added since package v6.0, you may skip this step.

Update `config/app.php`

```
'providers' => [
    ...
    Onecentlin\Adminer\ServiceProvider::class,
];
```

Publish config and theme file
-----------------------------

[](#publish-config-and-theme-file)

```
php artisan vendor:publish --provider="Onecentlin\Adminer\ServiceProvider"

```

This action will copy two files and one folder:

- `config/adminer.php` - Adminer config file
- `public/adminer.css` - Adminer theme file
- `resources/plugins` - Adminer plugins directory

### config file: `config/adminer.php`

[](#config-file-configadminerphp)

```
