wicool / bake-module
Make a Laravel module based skeleton
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=7.1
This package is auto-updated.
Last update: 2025-03-01 00:28:32 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