dev-master
9999999-devCommands to automate the creation of modules in laravel
MIT
The Requires
- php >=7.0.0
The Development Requires
by Elton Antunes
laravel module
Commands to automate the creation of modules in laravel
How to use:, (*1)
php artisan bake:module [name]
Run name on plural and lower case, example:, (*2)
php artisan bake:module posts
Register provider in config/app.php, see command result. Example of command result:, (*3)
Add this provider to config/app.php: Modules\Posts\Providers\PostServiceProvider::class,
Creating Migrations:, (*4)
php artisan make:migration create_posts_table --path=modules/Posts/Migrations
Inspirado e iniciado a partir do repo: https://github.com/erikfig/laravel, (*5)
Commands to automate the creation of modules in laravel
MIT
laravel module