All Projects → Qsnh → Laravel Cadillac

Qsnh / Laravel Cadillac

🍺 A database tool for laravel.

Projects that are alternatives of or similar to Laravel Cadillac

Nova Custom Email Sender
A Laravel Nova tool that sends ad-hoc email messages from the dashboard.
Stars: ✭ 62 (-1.59%)
Mutual labels:  laravel, tool
Gorose
GoRose(go orm), a mini database ORM for golang, which inspired by the famous php framwork laravle's eloquent. It will be friendly for php developer and python or ruby developer. Currently provides six major database drivers: mysql,sqlite3,postgres,oracle,mssql, Clickhouse.
Stars: ✭ 947 (+1403.17%)
Mutual labels:  database, laravel
Learning laravel kernel
Laravel核心代码学习
Stars: ✭ 789 (+1152.38%)
Mutual labels:  database, laravel
Laravel Options
Global key-value store in the database
Stars: ✭ 626 (+893.65%)
Mutual labels:  database, laravel
Laravel Queue Database Ph4
Laravel Database Queue with Optimistic locking
Stars: ✭ 37 (-41.27%)
Mutual labels:  database, laravel
Laravel Web Tinker
Tinker in your browser
Stars: ✭ 664 (+953.97%)
Mutual labels:  laravel, tool
Larawiz
Larawiz is a easy project scaffolder for Laravel
Stars: ✭ 28 (-55.56%)
Mutual labels:  database, laravel
Laravel Backup
A package to backup your Laravel app
Stars: ✭ 4,752 (+7442.86%)
Mutual labels:  database, laravel
Laravel Pg Extensions
Laravel extensions for Postgres
Stars: ✭ 33 (-47.62%)
Mutual labels:  database, laravel
Laravel Couchbase
Couchbase providers for Laravel
Stars: ✭ 31 (-50.79%)
Mutual labels:  database, laravel
Laravel Translatable
A Laravel package for multilingual models
Stars: ✭ 624 (+890.48%)
Mutual labels:  database, laravel
Laravel Tags
Add tags and taggable behaviour to your Laravel app
Stars: ✭ 1,026 (+1528.57%)
Mutual labels:  database, laravel
Analogue
Analogue ORM : Data Mapper ORM for Laravel/PHP
Stars: ✭ 618 (+880.95%)
Mutual labels:  database, laravel
Laravel
Laravel Model Generator
Stars: ✭ 715 (+1034.92%)
Mutual labels:  database, laravel
Laravel Eloquent Query Cache
Adding cache on your Laravel Eloquent queries' results is now a breeze.
Stars: ✭ 529 (+739.68%)
Mutual labels:  database, laravel
Eloquent Driver
A package that allows you to store Statamic entries in a database.
Stars: ✭ 28 (-55.56%)
Mutual labels:  database, laravel
Lada Cache
A Redis based, fully automated and scalable database cache layer for Laravel
Stars: ✭ 424 (+573.02%)
Mutual labels:  database, laravel
Performance
⏱ PHP performance tool analyser your script on time, memory usage and db query. Support Laravel and Composer for web, web console and command line interfaces.
Stars: ✭ 429 (+580.95%)
Mutual labels:  database, laravel
Laravel Database Logger
Log database query sql in Laravel Application, support Guard,Auth to multiple file record
Stars: ✭ 31 (-50.79%)
Mutual labels:  database, laravel
Avbook
AV 电影管理系统, avmoo , javbus , javlibrary 爬虫,线上 AV 影片图书馆,AV 磁力链接数据库,Japanese Adult Video Library,Adult Video Magnet Links - Japanese Adult Video Database
Stars: ✭ 8,133 (+12809.52%)
Mutual labels:  database, laravel

Laravel-Cadillac

This package develop on laravel, please confirm use it on laravel project.In the daily development, some structures of the data table may have certain changes, such as: add one field or remove one field. If the development cycle of the project is long, we may forget about the structure of some data tables so that we need to look at the Migration file or enter Mysql to see the structure of the data table, but I think this is a waste of time! Therefore, I developed this package. When we need to look at the structure of data tables that we do not remember very clearly, we only need one command!

中文文档

Compatible DB Engines

  • MySQL

Installation

composer require qsnh/laravel-cadillac dev-master --dev

It's recommended use it in develop environment.

Command

php artisan cadillac [tableName] --export --html

Show all tables in current database

php artisan cadillac

php artisan cadillac

Show a table structure

php artisan cadillac tableName

php artisan cadillac tableName

Import all the table structures of the current database into the MARKDOWN file

php artisan cadillac --export

php artisan cadillac --export

Import all the table structures of the current database into the HTML file

php artisan cadillac --export --html

php artisan cadillac --export --html

Print one table all fields

php artisan cadillac --f=users

output:

id,name,email,password,remember_token,created_at,updated_at

and if u add --q params,it will print:

'id','name','email','password','remember_token','created_at','updated_at'

Author

Qsnh

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].