List database table schema from Artisan (Laravel CLI)
resohead/laravel-cli-schema is a Laravel package for list database table schema from artisan (laravel cli).
It currently has 0 GitHub stars and 3 downloads on Packagist (latest version v0.1.0).
Install it with composer require resohead/laravel-cli-schema.
Discover more Laravel packages by resohead
or browse all Laravel packages to compare alternatives.
Last updated
A small Laravel package to show basic database tables and column information from an Artisan command.
You can install the package via composer:
composer require resohead/laravel-cli-schema {--dev}
Get all tables and columns
php artisan schema:table
Get a list of all tables
php artisan schema:table --list
Get a column information for a table
php artisan schema:table --name=users
Get a column information for a table via prompt with select list
php artisan schema:table --name=
Select a table:
> users
Get a column information for a model
php artisan schema:table --model=App\\User
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.