danielh-official / laravel-database-gui
An in-app GUI for performing local database operations in your Laravel application. Like TablePlus, but in your app.
Package info
github.com/danielh-official/laravel-database-gui
Language:Blade
pkg:composer/danielh-official/laravel-database-gui
Fund package maintenance!
Requires
- php: ^8.3
- illuminate/contracts: ^11.0||^12.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.8
- orchestra/testbench: ^10.0.0||^9.0.0
- pestphp/pest: ^4.0
- pestphp/pest-plugin-arch: ^4.0
- pestphp/pest-plugin-laravel: ^4.0
- phpstan/extension-installer: ^1.4
- phpstan/phpstan-deprecation-rules: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- spatie/laravel-ray: ^1.35
This package is auto-updated.
Last update: 2026-03-30 23:21:11 UTC
README
An composer package that installs an in-app GUI for performing local database operations in your Laravel application. Like TablePlus, but in your app.
Installation
You can install the package via composer:
composer require --dev danielh-official/laravel-database-gui
You can publish the config file with:
php artisan vendor:publish --tag="database-gui-config"
This is the contents of the published config file:
return [ 'base_path' => 'db', // The base path for your database GUI routes 'app_path' => '/', // The path back to your main app ];
Note: This project uses Tailwind for styling via the CDN by default.
You can publish the views, using:
php artisan vendor:publish --tag="database-gui-views"
And then style or change them however you like.
Usage
This package is meant to be used in a local environment only.
Routes are auto-registered in the local environment by default.
Run php artisan route:list to see the list of routes for your app.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
