Looking to hire Laravel developers? Try LaraJobs

laravel-modularization maintained by boleiros

Description
Commands to automate the creation of modules in laravel
Last update
2019/08/25 12:26 (dev-master)
License
Links
Downloads
13
Tags

Comments
comments powered by Disqus

Gerador de módulos para o laravel

How to use:

php artisan bake:module [name]

Run name on plural and lower case, example:

php artisan bake:module posts

Register provider in config/app.php, see command result. Example of command result:

Add this provider to config/app.php:
Modules\Posts\Providers\PostServiceProvider::class,

Creating Migrations:

php artisan make:migration create_posts_table --path=modules/Posts/Migrations

Inspirado e iniciado a partir do repo: https://github.com/erikfig/laravel