fathur / laragendb
Get Database structure to generate Code and relationship
Installs: 38
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
This package is not auto-updated.
Last update: 2024-11-24 03:04:11 UTC
README
Introduction
-
This Laravel 5 package will get all of your database tables and columns information in order to generate proper database relationship and migration
-
This package DOES NOT GET YOUR DATABASE DATA!
-
You can see the database structure information that was transmitted at
http://yourdomain.com/dbstructure
How to install
- At terminal, run this command :
composer require fathur/laragendb
- Open Laravel config/app.php, add this line at the providers array
'providers' => [
...
Fathur\Laragendb\LaragenDBServiceProvider::class,
],
- Test the packages by visiting. You should see the list of table and table column that will be used by Laragen to generate your code
http://yourdomain.com/dbstructure
- If the package not yet auto loaded, in your terminal, run
composer dump-autoload