定制 behzadhosseinpoor/laravel-database-manager 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

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.

统计信息

  • 总下载量: 13
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: Vue

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-12-07