behzadhosseinpoor/laravel-database-manager

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

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:Vue

pkg:composer/behzadhosseinpoor/laravel-database-manager

v1.1.1 2025-12-13 07:54 UTC

This package is auto-updated.

Last update: 2025-12-13 07:57:37 UTC


README

Laravel Database Manager

Total Downloads Latest Stable Version License

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 & pagination
  • Inspect table structure (columns & 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

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

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.

<?php

return [
    'default_connection' => env('DATABASE_MANAGER_DEFAULT_CONNECTION'),
    'name' => env('DATABASE_MANAGER_NAME'),
    'domain' => env('DATABASE_MANAGER_DOMAIN'),
    'path' => env('DATABASE_MANAGER_PATH', 'database-manager'),
    'middleware' => [
        'web'
    ],
    'connections' => [
        'mysql'
    ]
];

License

Laravel Database Manager is open‑source software licensed under the MIT license.