behzadhosseinpoor/laravel-database-manager
最新稳定版本:v1.1.1
Composer 安装命令:
composer require behzadhosseinpoor/laravel-database-manager
包简介
A Laravel package for managing MySQL, SQL Server and SQLite databases using Livewire.
README 文档
README
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.
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.
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-12-07

