2017 © Pedro PelĂĄez
 

library laravel-modularization

Commands to automate the creation of modules in laravel

image

boleiros/laravel-modularization

Commands to automate the creation of modules in laravel

  • Monday, October 30, 2017
  • by flavianohonorato
  • Repository
  • 7 Watchers
  • 1 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Gerador de mĂłdulos para o 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)

The Versions

30/10 2017

dev-master

9999999-dev

Commands to automate the creation of modules in laravel

  Sources   Download

MIT

The Requires

  • php >=7.0.0

 

The Development Requires

by Elton Antunes

laravel module