wicool/bake-module

Make a Laravel module based skeleton

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

This package is auto-updated.

Last update: 2024-04-29 04:59:27 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