Download the PHP package sayeed/crud-from-db without Composer
On this page you can find all versions of the php package sayeed/crud-from-db. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package crud-from-db
Laravel CRUD generator from database schema
Laravel CRUD generator will help you to generate CRUD direct from database schema.
- Laravel Custom DB Migrate
- Installation
- Laravel 5.5 and above
- Laravel 5.4 and older
- Usage
- CRUD using specific model name
- CRUD useing specific connection name
- CRUD with auth middleware
- CRUD with forcefully overwrite
- CRUD skip some table
- Help
- Credits
- Installation
Installation
You can install the package via composer:
Laravel 5.5 and above
The package will automatically register itself, so you can start using it immediately.
Laravel 5.4 and older
In Laravel version 5.4 and older, you have to add your new provider to the providers
array of config/app.php
:
Add two class aliases to the aliases
array of config/app.php
Usage
After installing the package, you will now see a new command.
CRUD using specific model name
You can generate CRUD from a specific table using table model name:
Alternatively, you can use the longform version:
CRUD useing specific connection name
You can generate CRUD from specific database connection, default connection mysql:
Alternatively, you can use the longform version:
CRUD with auth middleware
You can generate CRUD with auth middleware:
Alternatively, you can use the longform version:
CRUD with forcefully overwrite
You can generate CRUD with forcefully overwritten existing file:
Alternatively, you can use the longform version:
CRUD skip some table
You can generate CRUD without some specific table:
Alternatively, you can use the longform version:
You can pass here table name or model name
CRUD help
CRUD help:
Alternatively, you can use the longform version:
Credits
-
Thank you for using it.