Skip to content

Releases: laracademy/ModelGenerator

Bug Fix

26 May 03:19
Compare
Choose a tag to compare

Fixes the array map issue when using --all to generate all models in the database

Removed arguments and placed them into options

20 May 01:44
Compare
Choose a tag to compare

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

18 May 16:09
Compare
Choose a tag to compare

First release of Model Generator