PHPackages                             behzadhosseinpoor/laravel-database-manager - 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. behzadhosseinpoor/laravel-database-manager

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

behzadhosseinpoor/laravel-database-manager
==========================================

A Laravel package for managing MySQL, SQL Server and SQLite databases using Livewire.

v1.1.1(6mo ago)033MITVuePHP ^8.0

Since Dec 7Pushed 6mo agoCompare

[ Source](https://github.com/behzadhosseinpoor/laravel-database-manager)[ Packagist](https://packagist.org/packages/behzadhosseinpoor/laravel-database-manager)[ Docs](https://github.com/behzadhosseinpoor/laravel-database-manager)[ RSS](/packages/behzadhosseinpoor-laravel-database-manager/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (2)Versions (6)Used By (0)

[![Laravel Database Manager](/art/logo.png)](/art/logo.png)

[![Total Downloads](https://camo.githubusercontent.com/91e48b7e54bf6e62155d2ab62bc09bd96b8d5fc5ebbd02af1fdba291640d0752/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6265687a6164686f737365696e706f6f722f6c61726176656c2d64617461626173652d6d616e61676572)](https://packagist.org/packages/behzadhosseinpoor/laravel-database-manager)[![Latest Stable Version](https://camo.githubusercontent.com/93249e2dacdae29dbb1d10217b2051df0f03b4e4ce79e4d084c6607b84642fc6/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6265687a6164686f737365696e706f6f722f6c61726176656c2d64617461626173652d6d616e61676572)](https://packagist.org/packages/behzadhosseinpoor/laravel-database-manager)[![License](https://camo.githubusercontent.com/08f5a859cce98ad50ef3d0964e00bb67e46704dabf3aabef14fec12827e2ae16/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6265687a6164686f737365696e706f6f722f6c61726176656c2d64617461626173652d6d616e61676572)](https://packagist.org/packages/behzadhosseinpoor/laravel-database-manager)

Introduction
------------

[](#introduction)

**Laravel Database Manager** provides a beautiful, modern, and developer‑friendly UI for exploring and managing your application's databases directly from the browser.

It supports multiple database connections (MySQL) and ships with a polished SPA interface built with Vue 3, Tailwind, and Laravel’s powerful backend.

This package makes it easy to:

- Browse table data with sorting &amp; pagination
- Inspect table structure (columns &amp; indexes)
- Run SQL queries safely with a smooth collapsible editor
- Switch between multiple connections
- View high‑level database metadata

Everything is handled through a simple configuration file — fully version‑controllable and team‑friendly.

[![Laravel Database Manager](/art/screenshot.png)](/art/screenshot.png)

---

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

[](#installation)

You may install Database Manager using Composer:

```
composer require behzadhosseinpoor/laravel-database-manager
```

After installation, publish the package’s configuration, assets, and layout using:

```
php artisan database-manager:install
```

### Configuration

[](#configuration)

After installation, the main configuration file will be located at:

```
config/database-manager.php

```

Inside this file, you may customize:

- The default database connection
- The list of allowed connections
- The route path and middleware
- Authorization settings for accessing the dashboard

Each option includes clear documentation inside the file.

```
