migration generator laravel tutorial point code example
Example: laravel migrations generator laravel
Use this package
https:
composer require oscarafdev/migrations-generator --dev
Run php artisan migrate:generate to create migrations for all the tables,
or you can specify the tables you wish to generate using
php artisan migrate:generate table1,table2,table3,table4,table5.
You can also ignore tables with --ignore="table3,table4,table5"
You can check this out(Never tested this before)
https:
composer require --dev "xethron/migrations-generator"