cyberfly / laragendb by integrasolid

Get Database structure to generate Code and relationship
37
0
1
Package Data
Maintainer Username: integrasolid
Maintainer Contact: mhd.fathur@live.com (Fathur Rahman)
Package Create Date: 2017-08-18
Package Last Update: 2017-09-09
Language: PHP
License: Unknown
Last Refreshed: 2024-04-27 03:12:42
Package Statistics
Total Downloads: 37
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

laragendb

Introduction

  1. This Laravel 5 package will get all of your database tables and columns information in order to generate proper database relationship and migration

  2. This package DOES NOT GET YOUR DATABASE DATA!

  3. You can see the database structure information that was transmitted at

http://yourdomain.com/dbstructure

How to install

  1. At terminal, run this command :
composer require fathur/laragendb
  1. Open Laravel config/app.php, add this line at the providers array
'providers' => [
        ...
         Fathur\Laragendb\LaragenDBServiceProvider::class,
    ],
  1. 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
  1. If the package not yet auto loaded, in your terminal, run
composer dump-autoload