Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/boleiros/laravel-modularization

Bake de Módulos para o Laravel
https://github.com/boleiros/laravel-modularization

laravel laravel-5-package laravel55 modularity-framework modularization module

Last synced: 9 days ago
JSON representation

Bake de Módulos para o Laravel

Awesome Lists containing this project

README

        

# 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