wicool/bake-module

Make a Laravel module based skeleton

Installs: 11

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:package

pkg:composer/wicool/bake-module

dev-master 2019-08-31 21:08 UTC

This package is auto-updated.

Last update: 2025-09-29 02:49:44 UTC


README

How to use:

php artisan bake:module [ModuleName]

Run name on plural and uppercase, for example: Posts

php artisan bake:module Posts

Add your module service provider to config/app.php

Modules\Posts\Providers\PostServiceProvider::class,

This command generates the following structure with its respective files.

Facades
Http/Controllers
Interfaces
Models
Providers
Routes
Services