gcrlink's avatar

php artisan make:model | controller

Is posible integrate the make:model and make:controller commands in Lumen? The only "make" command I have in my lumen 5.2.* version is make:migration.

0 likes
3 replies
bobbybouwmann's avatar

You can create your own commands in Lumen, since you want a Laravel command you can simply copy it from the Laravel framework into your commands directory in your Lumen project.

Note: you might need to update some stuff, but these are the files to look for

2 likes
gcrlink's avatar

Thanks bobbybouwmann, I will check that.

Please or to participate in this conversation.