Skip to content

Releases: pingpong-labs/generators

Version 2.2.0 Stable

06 Jan 08:40
Compare
Choose a tag to compare
  • Support Laravel 5.2
  • Allow to create realtionship field in generate:migration command.
php artisan generate:migration create_posts_table --fields="belongsTo:App\User, title:string, body:text"
  • Allow to create migration from an existing table.
php artisan generate:migration books --existing
  • Allow to create scaffold from an existing table.
php artisan generate:scaffold book --existing