Download the PHP package d-scribe/laravel-db-command without Composer
On this page you can find all versions of the php package d-scribe/laravel-db-command. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package laravel-db-command
laravel-db-command
A laravel command for database operations
Introduction
This package creates a simple way to access and manipulate the application's database from the terminal.
Usage
Run php artisan db:table -h
to view list of functions.
Examples
- Create:
php artisan db:table users -c --data=first_name:Ezra,last_name:Obiwale,status:3
- Read:
php artisan db:table users --where=first_name:=:Ezra,status:=:3,deleted_at:null
- Update:
php artisan db:table users -u --where=id:=:3 --data=status:4
- Delete:
php artisan db:table users -d --where=id:=:3
All versions of laravel-db-command with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.0
The package d-scribe/laravel-db-command contains the following files
Loading the files please wait ....