Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/boleiros/laravel-modularization
- Owner: boleiros
- Created: 2017-10-25T21:07:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-25T10:27:05.000Z (about 5 years ago)
- Last Synced: 2024-10-18T13:38:09.262Z (about 1 month ago)
- Topics: laravel, laravel-5-package, laravel55, modularity-framework, modularization, module
- Language: PHP
- Size: 5.98 MB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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