Interactive Make Command
Published on by Eric L. Barnes
The Interactive Make Command is a new package by Laracademy that allows you to get interactive questions after running php artisan make
.
On the project page they have created this animated Gif which gives a great overview of how the package works:
For more information check out the project page on Github and you can install it easily through composer:
composer require laracademy/interactive-make
Then add its service provider to the config/app.php:
Laracademy\Commands\MakeServiceProvider::class,
Finally, run php artisan make
to get a list of the commands available.
Eric is the creator of Laravel News and has been covering Laravel since 2012.