Releases: laracademy/ModelGenerator
Releases · laracademy/ModelGenerator
Bug Fix
Removed arguments and placed them into options
This was a bigger change than expected however all arguments are now listed as options. This gives you the ability to specify all tables instead of a single table.
You can also change the connection from the default connection found in your .env to another connection that is located in your config/database.php
Quick Examples
All Tables
php artisan generate:model --all
A table on a different database schema
php artisan generate:model --table=users,posts --connection=candle
Initial Release
First release of Model Generator